Skip to content
This repository has been archived by the owner on Feb 16, 2021. It is now read-only.

Commit

Permalink
Change default admin user case
Browse files Browse the repository at this point in the history
  • Loading branch information
jvelo committed Apr 18, 2012
1 parent 11744aa commit f49f14f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grails-app/conf/BootStrap.groovy
Expand Up @@ -28,7 +28,7 @@ class BootStrap {

def testUser = new SecurityUser(username: 'user', enabled: true, password: 'password')
testUser.save(flush: true)
def testAdmin = new SecurityUser(username: 'admin', enabled: true, password: 'admin')
def testAdmin = new SecurityUser(username: 'Admin', enabled: true, password: 'admin')
testAdmin.save(flush: true)

// Give user role to user
Expand Down

0 comments on commit f49f14f

Please sign in to comment.