Guest User

Untitled

a guest
May 26th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // ...
  2.  
  3. export default class {
  4. // ...
  5.  
  6. @IsString()
  7. @IsDefined()
  8. public password: string
  9.  
  10. @Acl('*')
  11. public static async execute(state: mage.core.IState, username: string, password: string, weapon: PlayerWeapon) {
  12. return PlayerModule.create(state, username, password, weapon);
  13. }
  14. }
Add Comment
Please, Sign In to add comment