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

Show
Ignore:
Timestamp:
07/12/10 12:10:49 (23 months ago)
Author:
tboutell
Message:

Our default fixtures now create separate superadmin and admin accounts.
The superadmin account can create and remove permissions and groups
from the system, while the admin account can only edit users and add them
to existing groups. This is currently best for client admin use. Of course
you can override these things

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • sandboxes/asandbox/branches/1.4/data/fixtures/demo_admin_user.yml

    r756 r1731  
     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