Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
added register url to background check
Browse files Browse the repository at this point in the history
  • Loading branch information
fwitulski committed Apr 30, 2018
1 parent a0111c6 commit 14d0500
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Upload of profile pictures now prevents files with wrong extensions [#581] (https://github.com/h-da/geli/issues/581)
- the view of downloading a empty course [#659](https://github.com/h-da/geli/issues/659)
- Videos in the Course Section now get equally sized and cant grow too big in mobile views. [#534] (https://github.com/h-da/geli/issues/534)
- Background on password reset page is missing [#673] (https://github.com/h-da/geli/issues/673)

### Security
- Fixed multiple severe course related security issues #594, #653.
Expand Down Expand Up @@ -82,4 +83,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [0.1.0] - 2017-05-11 - Basics implemented
### Added
- Many basic implementations of ground functionality
- Many basic implementations of ground functionality
2 changes: 1 addition & 1 deletion app/webFrontend/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class AppComponent implements OnInit {
}

specialContainerStyle(): string {
const routeTest = /^(\/|\/login|\/register|\/activation-resend)$/.test(this.router.url);
const routeTest = /^(\/|\/login|\/register|\/reset|\/activation-resend)$/.test(this.router.url);

return (routeTest && !this.isLoggedIn()) ? 'special-style' : '';
}
Expand Down

0 comments on commit 14d0500

Please sign in to comment.