Skip to content

Commit

Permalink
Fixed accidently refactored BootStrap
Browse files Browse the repository at this point in the history
  • Loading branch information
mirhagen committed Jan 22, 2010
1 parent aafefec commit d24024a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qanban/grails-app/conf/BootStrap.groovy
Expand Up @@ -50,8 +50,8 @@ class BootStrap {

adminRole = addRoleIfNotExist("administrator access", "ROLE_QANBANADMIN")
userRole = addRoleIfNotExist("regular eventCreator access", "ROLE_QANBANUSER")
regularUser = addUserIfNotExist("testuser", "Test User", "testuser", true, "This is a regular eventCreator", "mattias.mirhagen@gmail.com", [userRole])
adminUser = addUserIfNotExist("testadmin", "Admin User", "testadmin", true, "This is an admin eventCreator", "patrik.gardeman@gmail.com", [adminRole, userRole])
regularUser = addUserIfNotExist("testuser", "Test User", "testuser", true, "This is a regular user", "mattias.mirhagen@gmail.com", [userRole])
adminUser = addUserIfNotExist("testadmin", "Admin User", "testadmin", true, "This is an admin user", "patrik.gardeman@gmail.com", [adminRole, userRole])
setupUser = addUserIfNotExist("bootstrap", "Setup Deamon", "bs", true, "User creating the default board setup", "bootstrap@qanban.se",[adminRole, userRole])

addBoardIfNotExist()
Expand Down

0 comments on commit d24024a

Please sign in to comment.