mirror of
https://github.com/internetee/registry.git
synced 2025-06-04 03:37:28 +02:00
Remove mod_epp references from docs
This commit is contained in:
parent
57d2a40e23
commit
50086afad6
3 changed files with 6 additions and 7 deletions
|
@ -22,11 +22,6 @@ Documentation
|
|||
* [Database diagram](/doc/models_complete.svg)
|
||||
* [Controllers diagram](/doc/controllers_complete.svg)
|
||||
|
||||
### Updating documentation
|
||||
|
||||
AUTODOC=true rspec spec/requests
|
||||
EPP_DOC=true rspec spec/epp --tag epp --require support/epp_doc.rb --format EppDoc > doc/epp_examples.md
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
|
@ -381,6 +376,8 @@ All registry demo data can be found at:
|
|||
|
||||
Initially you can use two type of users: admin users and EPP users.
|
||||
|
||||
For using EPP we are strongly recommend to install epp_proxy instead of mod_epp. You can get epp_proxy from https://github.com/internetee/epp_proxy
|
||||
|
||||
### Wkhtmltopdf setup
|
||||
|
||||
```
|
||||
|
|
|
@ -343,7 +343,9 @@ module Epp
|
|||
end
|
||||
|
||||
def epp_session_id
|
||||
cookies[:session] # Passed by mod_epp https://github.com/mod-epp/mod-epp#requestscript-interface
|
||||
# Passed by EPP proxy
|
||||
# https://github.com/internetee/epp_proxy#translation-of-epp-calls
|
||||
cookies[:session]
|
||||
end
|
||||
|
||||
def ensure_session_id_passed
|
||||
|
|
|
@ -31,7 +31,7 @@ class EppLoginCredentialsTest < EppTestCase
|
|||
end
|
||||
|
||||
def test_already_logged_in
|
||||
assert true # Handled by mod_epp
|
||||
assert true # Handled by EPP proxy
|
||||
end
|
||||
|
||||
def test_wrong_credentials
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue