Guest User

Untitled

a guest
May 27th, 2018
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. AuthService authService
  2. def init = { servletContext ->
  3. environments{
  4. development{
  5. authService.createUser(new User(email: 'myemail@url.com', admin: true), 'password')
  6. authService.createUser(new User(email: 'myemail2@url.com'), 'password')
  7. }
  8. }
  9. }
Add Comment
Please, Sign In to add comment