forked from p15670423/monkey
cc: Remove StandardConfig in frontend
This commit is contained in:
parent
6937a6b81a
commit
7fe9d752fa
|
@ -1,4 +1,3 @@
|
||||||
import StandardConfig from './StandardConfig';
|
|
||||||
import AwsConfig from './AwsConfig';
|
import AwsConfig from './AwsConfig';
|
||||||
import PasswordConfig from './PasswordConfig';
|
import PasswordConfig from './PasswordConfig';
|
||||||
|
|
||||||
|
@ -6,7 +5,6 @@ import SERVER_CONFIG_JSON from '../../../server_config.json';
|
||||||
|
|
||||||
const CONFIG_DICT =
|
const CONFIG_DICT =
|
||||||
{
|
{
|
||||||
'standard': StandardConfig,
|
|
||||||
'aws': AwsConfig,
|
'aws': AwsConfig,
|
||||||
'password': PasswordConfig
|
'password': PasswordConfig
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
import BaseConfig from './BaseConfig';
|
|
||||||
|
|
||||||
class StandardConfig extends BaseConfig {
|
|
||||||
|
|
||||||
isAuthEnabled() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default StandardConfig;
|
|
Loading…
Reference in New Issue