To participate you must create an account on apostrophenow.org. If you have already done so, click Login.

Show
Ignore:
Timestamp:
07/20/10 12:01:58 (22 months ago)
Author:
tboutell
Message:

Comments explaining when and how to modify web/index.php (we at P'unk should leave it alone so
Symfony devs see what they expect; once you've cloned this into your own repo though, go ahead
and change it if you wish).

Separate superadmin and admin test users in the default fixtures (we recommend pulling the
plug on superadmin before you hand the keys to your client)

Location:
sandboxes/asandbox/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • sandboxes/asandbox/trunk

  • sandboxes/asandbox/trunk/data/fixtures/demo_admin_user.yml

    r756 r1803  
     1# Two users by default: a superadmin (we suggest reserving this account for developer use and 
     2# removing it at production launch) and an admin (a member of the admin group). We suggest 
     3# giving the latter account to the client. Out of the box, Apostrophe's group  
     4# dashboard isn't of much use to a client admin (it will be in 1.5) and the permissions  
     5# dashboard is just plain dangerous, so we show only the users dashboard to regular admins 
     6 
    17sfGuardUser: 
     8  sgu_superadmin: 
     9    username: superadmin 
     10    password: demo 
     11    is_super_admin: true 
    212  sgu_admin: 
    313    username: admin 
    414    password: demo 
    5     is_super_admin: true 
     15sfGuardUserGroup: 
     16  sgug_admin_admin: 
     17    sfGuardUser: sgu_admin 
     18    sfGuardGroup: sfGuardGroup_admin