Skip to content

Commit

Permalink
fix for identities perms
Browse files Browse the repository at this point in the history
  • Loading branch information
voitto committed Oct 11, 2008
1 parent cd6df11 commit 69d6359
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions app/models/Identity.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,19 @@ function Identity() {
$this->let_read( 'all:entry' );
$this->let_read( 'all:entry.jpg' );
$this->let_read( 'all:entry.xrds' );
//$this->let_read( 'all:installed_apps_json' );
//$this->let_read( 'all:app_installer_json' );

$this->let_read( 'all:installed_apps_json' );
$this->let_read( 'all:app_installer_json' );



$this->let_read( 'all:admin' );

// anyone can call up the edit form for any user -- hrm
$this->let_read( 'all:edit' );
$this->let_read( 'all:apps' );
$this->let_read( 'all:subs' );


// groups

Expand Down

0 comments on commit 69d6359

Please sign in to comment.