Skip to content

Commit ffea35e

Browse files
authored
Merge pull request #2407 from dragonchaser/backport-backchannel-logout
Backport backchannel logout
2 parents 535a5d6 + f8bed83 commit ffea35e

11 files changed

Lines changed: 1149 additions & 217 deletions

File tree

services/idp/package.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"analyze": "source-map-explorer 'build/static/js/*.js'",
88
"build": "node --openssl-legacy-provider scripts/build.js && rm -f build/service-worker.js",
99
"licenses": "NODE_PATH=./node_modules node ../scripts/js-license-ranger.js",
10-
"licenses:check": "license-checker-rseidelsohn --summary --relativeLicensePath --onlyAllow 'Python-2.0;Apache*;Apache License, Version 2.0;Apache-2.0;Apache 2.0;Artistic-2.0;BSD;BSD-3-Clause;CC-BY-3.0;CC-BY-4.0;CC0-1.0;ISC;MIT;MPL-2.0;Public Domain;Unicode-TOU;Unlicense;WTFPL;ODC-By-1.0;BlueOak-1.0.0;OFL-1.1' --excludePackages 'identifier;kpop;unicoderegexp' --clarificationsFile license-checker-clarifications.json",
10+
"licenses:check": "license-checker-rseidelsohn --summary --relativeLicensePath --onlyAllow 'Python-2.0;Apache*;Apache License, Version 2.0;Apache-2.0;Apache 2.0;Artistic-2.0;BSD;BSD-3-Clause;CC-BY-3.0;CC-BY-4.0;CC0-1.0;ISC;MIT;MPL-2.0;Public Domain;Unicode-TOU;Unlicense;WTFPL;ODC-By-1.0;BlueOak-1.0.0;OFL-1.1' --excludePackages 'identifier;unicoderegexp' --clarificationsFile license-checker-clarifications.json",
1111
"licenses:csv": "license-checker-rseidelsohn --relativeLicensePath --csv --out ../../third-party-licenses/node/idp/third-party-licenses.csv",
1212
"licenses:save": "license-checker-rseidelsohn --relativeLicensePath --out /dev/null --files ../../third-party-licenses/node/idp/third-party-licenses",
1313
"lint": "eslint ./**/*.{tsx,ts,jsx,js}",
@@ -89,7 +89,6 @@
8989
"i18next-browser-languagedetector": "^8.1.0",
9090
"i18next-http-backend": "^3.0.2",
9191
"i18next-resources-to-backend": "^1.2.1",
92-
"kpop": "https://download.kopano.io/community/kapp:/kpop-2.7.2.tgz",
9392
"query-string": "^9.2.0",
9493
"react": "^17.0.2",
9594
"react-app-polyfill": "^3.0.0",
@@ -154,10 +153,5 @@
154153
"webpack-manifest-plugin": "5.0.0",
155154
"workbox-webpack-plugin": "7.1.0"
156155
},
157-
"packageManager": "pnpm@9.15.4",
158-
"pnpm": {
159-
"overrides": {
160-
"kpop>cldr": ""
161-
}
162-
}
156+
"packageManager": "pnpm@9.15.4"
163157
}

services/idp/pnpm-lock.yaml

Lines changed: 0 additions & 151 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/idp/src/App.jsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@ import React, {ReactElement, Suspense, lazy, useState, useEffect} from 'react';
22
import PropTypes from 'prop-types';
33

44
import {MuiThemeProvider} from '@material-ui/core/styles';
5-
import {defaultTheme} from 'kpop/es/theme';
6-
7-
import 'kpop/static/css/base.css';
8-
import 'kpop/static/css/scrollbar.css';
5+
import muiTheme from './theme';
96

107
import Spinner from './components/Spinner';
118
import * as version from './version';
@@ -52,7 +49,7 @@ const App = ({ bgImg }): ReactElement => {
5249
className={`oc-login-bg ${bgImg ? 'oc-login-bg-image' : ''}`}
5350
style={{backgroundImage: bgImg ? `url(${bgImg})` : undefined}}
5451
>
55-
<MuiThemeProvider theme={defaultTheme}>
52+
<MuiThemeProvider theme={muiTheme}>
5653
<Suspense fallback={<Spinner/>}>
5754
<LazyMain/>
5855
</Suspense>

0 commit comments

Comments
 (0)