11 lines
515 B
TypeScript
11 lines
515 B
TypeScript
import ProfileController from './ProfileController'
|
|
import PasswordController from './PasswordController'
|
|
import TwoFactorAuthenticationController from './TwoFactorAuthenticationController'
|
|
|
|
const Settings = {
|
|
ProfileController: Object.assign(ProfileController, ProfileController),
|
|
PasswordController: Object.assign(PasswordController, PasswordController),
|
|
TwoFactorAuthenticationController: Object.assign(TwoFactorAuthenticationController, TwoFactorAuthenticationController),
|
|
}
|
|
|
|
export default Settings |