mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
parent
1e95ec0c3d
commit
590ba48988
1 changed files with 1 additions and 1 deletions
2
index.js
2
index.js
|
@ -240,7 +240,7 @@ when.all([ghost.init(), filters.loadCoreFilters(ghost), helpers.loadCoreHelpers(
|
||||||
ghost.app().get(/^\/logout\/?$/, admin.logout);
|
ghost.app().get(/^\/logout\/?$/, admin.logout);
|
||||||
ghost.app().get('/ghost/login/', admin.login);
|
ghost.app().get('/ghost/login/', admin.login);
|
||||||
ghost.app().get('/ghost/signup/', admin.signup);
|
ghost.app().get('/ghost/signup/', admin.signup);
|
||||||
ghost.app().post('/ghost/login/', signupValidate, admin.auth);
|
ghost.app().post('/ghost/login/', admin.auth);
|
||||||
ghost.app().post('/ghost/signup/', signupValidate, admin.doRegister);
|
ghost.app().post('/ghost/signup/', signupValidate, admin.doRegister);
|
||||||
ghost.app().post('/ghost/changepw/', auth, admin.changepw);
|
ghost.app().post('/ghost/changepw/', auth, admin.changepw);
|
||||||
ghost.app().get('/ghost/editor/:id', auth, admin.editor);
|
ghost.app().get('/ghost/editor/:id', auth, admin.editor);
|
||||||
|
|
Loading…
Reference in a new issue