Skip to content

Commit

Permalink
feat(jans-auth-server): used in templates title jans instead of oxauth
Browse files Browse the repository at this point in the history
…#6933

Signed-off-by: YuriyZ <yzabrovarniy@gmail.com>
  • Loading branch information
yuriyz committed Dec 12, 2023
1 parent c009522 commit 84f144e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,11 @@ public void checkPermissionGrantedInternal() throws IOException {
return;
}

if (log.isTraceEnabled()) {
log.trace("checkPermissionGrantedInternal - scope: {}, client_id: {}, prompts: {}, responseType: {}, authorization_details: {}",
scope, clientId, prompt, responseType, authorizationDetails);
}

Client client = null;
try {
client = clientService.getClient(clientId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<f:view transient="true" locale="#{language.locale}">
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>oxAuth</title>
<title>Jans</title>

<link rel="icon" href="#{webConfigurationService.getImgLocation()}/favicon_icosahedron.ico" />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<f:view locale="#{language.locale}">
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>oxAuth</title>
<title>Jans</title>

<link type="text/css" rel="stylesheet" href="#{webConfigurationService.cssLocation}/site.css"/>
<link type="text/css" rel="stylesheet" href="#{webConfigurationService.cssLocation}/authorize.css"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<f:view transient="true" locale="#{language.locale}">
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>oxAuth</title>
<title>Jans</title>
<link type="text/css" rel="stylesheet" href="#{webConfigurationService.getCssLocation()}/theme.xcss"/>
<link type="text/css" rel="stylesheet" href="#{webConfigurationService.getCssLocation()}/theme.css"/>
<link type="text/css" rel="stylesheet" href="#{webConfigurationService.getCssLocation()}/site.css"/>
Expand Down

0 comments on commit 84f144e

Please sign in to comment.