2024-02-03 14:07:04 +08:00
|
|
|
/**
|
|
|
|
|
* Created by strawmanbobi
|
|
|
|
|
* 2016-11-27
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
let app = require('../irext_console.js');
|
|
|
|
|
let authenticationService = require('../services/authentication_service.js');
|
|
|
|
|
|
|
|
|
|
app.post('/irext/certificate/admin_login', authenticationService.adminLogin);
|
2020-12-02 20:57:55 +08:00
|
|
|
app.post('/irext/certificate/token_verify', authenticationService.verifyToken);
|