mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
6b3a54ba79
* Moves SmtpWarning to the components directory * Renders base errors on invite user form * Prevents add user and displays warning if smtp not configured * Wait to render content until API calls finish
17 lines
391 B
JavaScript
17 lines
391 B
JavaScript
export default {
|
|
ADMIN_DASHBOARD: '/admin',
|
|
ADMIN_SETTINGS: '/admin/settings',
|
|
ALL_PACKS: '/packs/all',
|
|
EDIT_QUERY: (query) => {
|
|
return `/queries/${query.id}`;
|
|
},
|
|
FORGOT_PASSWORD: '/login/forgot',
|
|
HOME: '/',
|
|
LOGIN: '/login',
|
|
LOGOUT: '/logout',
|
|
MANAGE_HOSTS: '/hosts/manage',
|
|
NEW_PACK: '/packs/new',
|
|
NEW_QUERY: '/queries/new',
|
|
RESET_PASSWORD: '/login/reset',
|
|
};
|