Reputation: 2699
there is a model admin section in the cms. for the content authors the model admin section shows up in the sidebar (i´ve set Access to 'ModelAdmin' section in the Permissions for the Group.) But for some reason no DataObjects are displayed. Logged in as admin I can see them all.
EDIT: this applies to GridFields in general: related data objects are not visible in gridfield for content authors. adding the canView function to the dataobject will help.
Thanks, Florian
Upvotes: 3
Views: 782
Reputation: 437
SilverStripe 2.4?
This could be a permission issue. I would try adding the following functions to your managed models (The DataObject classes) if they are missing.
public function canEdit() {
return true;
}
public function canDelete() {
return true;
}
public function canCreate(){
return true;
}
public function canPublish(){
return true;
}
public function canView(){
return true;
}
Upvotes: 3