rename endpoint
This commit is contained in:
		| @@ -12,4 +12,4 @@ export const OTA_SETTINGS_ENDPOINT = ENDPOINT_ROOT + "otaSettings"; | ||||
| export const SYSTEM_STATUS_ENDPOINT = ENDPOINT_ROOT + "systemStatus"; | ||||
| export const SIGN_IN_ENDPOINT = ENDPOINT_ROOT + "signIn"; | ||||
| export const VERIFY_AUTHORIZATION_ENDPOINT = ENDPOINT_ROOT + "verifyAuthorization"; | ||||
| export const USERS_ENDPOINT = ENDPOINT_ROOT + "users"; | ||||
| export const SECURITY_SETTINGS_ENDPOINT = ENDPOINT_ROOT + "securitySettings"; | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| import React, { Component } from 'react'; | ||||
|  | ||||
| import { USERS_ENDPOINT } from '../constants/Endpoints'; | ||||
| import { SECURITY_SETTINGS_ENDPOINT } from '../constants/Endpoints'; | ||||
| import { restComponent } from '../components/RestComponent'; | ||||
| import ManageUsersForm from '../forms/ManageUsersForm'; | ||||
| import SectionContent from '../components/SectionContent'; | ||||
| @@ -30,4 +30,4 @@ class ManageUsers extends Component { | ||||
|  | ||||
| } | ||||
|  | ||||
| export default restComponent(USERS_ENDPOINT, ManageUsers); | ||||
| export default restComponent(SECURITY_SETTINGS_ENDPOINT, ManageUsers); | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| import React, { Component } from 'react'; | ||||
|  | ||||
| import { USERS_ENDPOINT } from '../constants/Endpoints'; | ||||
| import { SECURITY_SETTINGS_ENDPOINT } from '../constants/Endpoints'; | ||||
| import { restComponent } from '../components/RestComponent'; | ||||
| import SecuritySettingsForm from '../forms/SecuritySettingsForm'; | ||||
| import SectionContent from '../components/SectionContent'; | ||||
| @@ -29,4 +29,4 @@ class SecuritySettings extends Component { | ||||
|  | ||||
| } | ||||
|  | ||||
| export default restComponent(USERS_ENDPOINT, SecuritySettings); | ||||
| export default restComponent(SECURITY_SETTINGS_ENDPOINT, SecuritySettings); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user