mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
chore: Fix linting
This commit is contained in:
parent
88ffa08512
commit
f99fcaca24
3 changed files with 6 additions and 6 deletions
|
@ -3,12 +3,12 @@ const { v4: uuid } = require('uuid');
|
||||||
const { getRemoteAddress } = require('../../../utils/remoteAddress');
|
const { getRemoteAddress } = require('../../../utils/remoteAddress');
|
||||||
|
|
||||||
const Errors = {
|
const Errors = {
|
||||||
INVALID_CODE_OR_NONCE: {
|
|
||||||
invalidCodeOrNonce: 'Invalid code or nonce',
|
|
||||||
},
|
|
||||||
INVALID_OIDC_CONFIGURATION: {
|
INVALID_OIDC_CONFIGURATION: {
|
||||||
invalidOIDCConfiguration: 'Invalid OIDC configuration',
|
invalidOIDCConfiguration: 'Invalid OIDC configuration',
|
||||||
},
|
},
|
||||||
|
INVALID_CODE_OR_NONCE: {
|
||||||
|
invalidCodeOrNonce: 'Invalid code or nonce',
|
||||||
|
},
|
||||||
INVALID_USERINFO_CONFIGURATION: {
|
INVALID_USERINFO_CONFIGURATION: {
|
||||||
invalidUserinfoConfiguration: 'Invalid userinfo configuration',
|
invalidUserinfoConfiguration: 'Invalid userinfo configuration',
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
const Errors = {
|
const Errors = {
|
||||||
INVALID_OIDC_CONFIGURATION: {
|
INVALID_OIDC_CONFIGURATION: {
|
||||||
invalidOidcConfiguration: 'Invalid OIDC configuration'
|
invalidOidcConfiguration: 'Invalid OIDC configuration',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
exits: {
|
exits: {
|
||||||
invalidOidcConfiguration: {
|
invalidOidcConfiguration: {
|
||||||
responseType: 'serverError'
|
responseType: 'serverError',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@ module.exports = {
|
||||||
},
|
},
|
||||||
|
|
||||||
exits: {
|
exits: {
|
||||||
invalidCodeOrNonce: {},
|
|
||||||
invalidOIDCConfiguration: {},
|
invalidOIDCConfiguration: {},
|
||||||
|
invalidCodeOrNonce: {},
|
||||||
invalidUserinfoConfiguration: {},
|
invalidUserinfoConfiguration: {},
|
||||||
missingValues: {},
|
missingValues: {},
|
||||||
emailAlreadyInUse: {},
|
emailAlreadyInUse: {},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue