Skip to content

Commit

Permalink
Bumped to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eko committed Jan 18, 2023
1 parent c678941 commit fea1b05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ $ docker run --rm \
-p 8080:8080 \
-p 8081:8081 \
-p 3000:80 \
ekofr/authz:v0.2.1-standalone
ekofr/authz:v0.4.0-standalone
```

Here, we use SQLite in-memory as database.
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/service/common/oauth.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const getOauthButtonLabel = (): string | undefined => process.env.REACT_APP_OAUTH_BUTTON_LABEL || 'Sign-in wigh Single Sign-On (SSO)';
export const getOauthLogoUrl = (): string | undefined => process.env.REACT_APP_OAUTH_LOGO_URL;
export const isOauthEnabled = (): boolean => process.env.REACT_APP_OAUTH_ENABLED ? true : true;
export const isOauthEnabled = (): boolean => process.env.REACT_APP_OAUTH_ENABLED ? true : false;

0 comments on commit fea1b05

Please sign in to comment.