-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39aa910
commit 18b230c
Showing
49 changed files
with
3,875 additions
and
1,027 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Enhancement: Site account extensions | ||
|
||
This PR heavily extends the site accounts service: | ||
* Extended the accounts information (not just email and name) | ||
* Accounts now have a password | ||
* Users can now "log in" to their accounts and edit it | ||
* Ability to grant access to the GOCDB | ||
|
||
Furthermore, these accounts can now be used to authenticate for logging in to our customized GOCDB. More use cases for these accounts are also planned. | ||
|
||
https://github.com/cs3org/reva/pull/2008 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,29 @@ | ||
[http] | ||
address = "0.0.0.0:9600" | ||
|
||
[http.services.siteacc] | ||
# If this is set to true, the service will expose a simple form for account registration | ||
enable_registration_form = true | ||
# All notification emails are sent to this email | ||
notifications_mail = "science.mesh@example.com" | ||
[http.services.siteacc.gocdb] | ||
url = "https://sciencemesh-test.uni-muenster.de/gocdb/" | ||
write_url = "https://sciencemesh-test.uni-muenster.de/gocdbpi/" | ||
apikey = "verysecret" | ||
|
||
# Set up the storage driver | ||
[http.services.siteacc.storage] | ||
driver = "file" | ||
[http.services.siteacc.storage.file] | ||
file = "/var/revad/accounts.json" | ||
|
||
# Email related settings | ||
[http.services.siteacc.email] | ||
notifications_mail = "science.mesh@example.com" | ||
|
||
# The SMTP server used for sending emails | ||
[http.services.siteacc.smtp] | ||
[http.services.siteacc.email.smtp] | ||
sender_mail = "science.mesh@example.com" | ||
smtp_server = "mail.example.com" | ||
smtp_port = 25 | ||
disable_auth = true | ||
|
||
# The webserver section defines various webserver-related settings | ||
[http.services.siteacc.webserver] | ||
url = "https://sciencemesh-test.uni-muenster.de/api/accounts/" | ||
session_timeout = 60 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.