mirror of
https://github.com/strapi/strapi.git
synced 2025-07-29 03:50:26 +00:00
10 lines
146 B
JavaScript
10 lines
146 B
JavaScript
'use strict';
|
|
|
|
module.exports = (ctx, next) => {
|
|
if (!ctx.state.isAuthenticatedAdmin) {
|
|
return ctx.unauthorized();
|
|
}
|
|
|
|
return next();
|
|
};
|