Skip to content

Commit

Permalink
Naming and typos #393
Browse files Browse the repository at this point in the history
  • Loading branch information
KayhanOgan committed Oct 12, 2022
1 parent 40f5b9c commit 5149864
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/controllers/Forms.java
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public static Promise<Result> getLogoutForm() {
public static Promise<Result> postLogout() {
return new CreateAction().call((userId) -> {

flash("message", "Goodby " + session().get("username")
flash("message", "Goodbye " + session().get("username")
+ ". You were successfully logged out");
session().clear();
return redirect(routes.Application.index());
Expand Down
6 changes: 3 additions & 3 deletions app/views/index.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
models.Globals.users.getUser(ctx())){
<div class="container">
<div class="row">
Standard installation of <a href="https://github.com/edoweb/regal-api"> Regal </a>.
For more information visit our <a href="https://github.com/edoweb/regal/wiki">Wiki</a>.
The http interface of Regal can be found <a href="/public/docs/">here</a>.
Standard installation of <a href="https://github.com/hbz/to.science.api">to.science</a>.
For more information visit our <a href="https://github.com/hbz/to.science/wiki">Wiki</a>.
The http interface of to.science can be found <a href="/public/docs/">here</a>.
</div>
</div>
}

0 comments on commit 5149864

Please sign in to comment.