Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ This was necessary because LDAP entries were not created for users until they be
While a user was unqualified, if the Redis cache was cleared, the user info would be lost.
Now, LDAP entries are created immediately for every user, so this is no longer necessary.

- Shut down the web portal
- Shut down the account portal
```shell
systemctl stop apache2
```
Expand Down
4 changes: 2 additions & 2 deletions deployment/config.base.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
; DO NOT EDIT THIS FILE. Copy this file to `config.ini` and edit that file.
[upstream]
version = "1.7.4" ; Current upstream version of the web portal
repo = "https://github.com/UnityHPC/account-portal" ; Upstream URL for the web portal
version = "1.7.4" ; Current upstream version of the account portal
repo = "https://github.com/UnityHPC/account-portal" ; Upstream URL for the account portal

[site]
prefix = "" ; prefix of website, no ending / should be included
Expand Down
2 changes: 1 addition & 1 deletion resources/templates/footer.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</div>
<div class="footerBlock">
<span>
Unity Web Portal Version
Unity Account Portal Version
<a target="_blank" href="{{ CONFIG['upstream']['repo'] }}">
{{ CONFIG['upstream']['version'] }}
</a>
Expand Down
2 changes: 1 addition & 1 deletion resources/templates/header.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@

{% if is_admin and (viewUser is not null) %}
<div id="viewAsBar">
<span>You are accessing the web portal as the user <strong>{{ viewUser }}</strong></span>
<span>You are accessing the account portal as the user <strong>{{ viewUser }}</strong></span>
<form method="POST" action="">
{{ getCSRFTokenHiddenFormInput()|raw }}
<input type="hidden" name="form_type" value="clearView">
Expand Down
Loading