Guest User

Untitled

a guest
May 26th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import * as mage from 'mage'
  2. import { Acl } from 'mage-validator';
  3.  
  4. import PlayerModule from '../'
  5.  
  6. export default class {
  7. @Acl('user')
  8. public static async execute(state: mage.core.IState) {
  9. return PlayerModule.list(state);
  10. }
  11. }
Add Comment
Please, Sign In to add comment