mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
* Make login, registration, password-reset layout brandable - Rename some variables related to this * Remove experimental code * add lodash types * fix build fix type --------- Co-authored-by: Ulf Gebhardt <ulf.gebhardt@webcraft-media.de>
13 lines
364 B
JavaScript
13 lines
364 B
JavaScript
// this file is duplicated in `backend/src/config/registrationBranded.ts` and `webapp/constants/registrationBranded.js`
|
|
import { merge } from 'lodash'
|
|
|
|
import registration from '~/constants/registration.js'
|
|
|
|
const defaultRegistration = {
|
|
NONCE_LENGTH: 5,
|
|
INVITE_CODE_LENGTH: 6,
|
|
LAYOUT: 'no-header',
|
|
}
|
|
|
|
export default merge(defaultRegistration, registration)
|