mirror of
https://github.com/silverstripe/silverstripe-contentreview
synced 2024-10-22 17:05:47 +02:00
31bcd0d439
* Update existing test for review button field name, remove obsolete save review test * Move test classes to tests/php to differentiate from behat * Add behat build to Travis configuration
88 lines
2.5 KiB
YAML
88 lines
2.5 KiB
YAML
SilverStripe\SiteConfig\SiteConfig:
|
|
mysiteconfig:
|
|
ReviewFrom: sender@silverstripe.com
|
|
ReviewSubject: 'Please log in to review some content!'
|
|
ReviewBody: '<h1>$Subject</h1><p>There are $PagesCount pages that are due for review today by you, $ToFirstName.</p><p>This email was sent to $ToEmail</p>'
|
|
|
|
SilverStripe\Security\Permission:
|
|
cmsmain1:
|
|
Code: CMS_ACCESS_CMSMain
|
|
cmsmain2:
|
|
Code: CMS_ACCESS_CMSMain
|
|
setreviewdates:
|
|
Code: EDIT_CONTENT_REVIEW_FIELDS
|
|
workflowadmin1:
|
|
Code: IS_WORKFLOW_ADMIN
|
|
workflowadmin2:
|
|
Code: IS_WORKFLOW_ADMIN
|
|
|
|
SilverStripe\Security\Group:
|
|
editorgroup:
|
|
Title: Edit existing pages
|
|
Code: editorgroup
|
|
Permissions:
|
|
- =>SilverStripe\Security\Permission.cmsmain1
|
|
- =>SilverStripe\Security\Permission.workflowadmin1
|
|
- =>SilverStripe\Security\Permission.setreviewdates
|
|
authorgroup:
|
|
Title: Author existing pages
|
|
Code: authorgroup
|
|
Permissions:
|
|
- =>SilverStripe\Security\Permission.cmsmain2
|
|
- =>SilverStripe\Security\Permission.workflowadmin2
|
|
|
|
SilverStripe\Security\Member:
|
|
author:
|
|
FirstName: Test
|
|
Surname: Author
|
|
Email: author@example.com
|
|
Groups: =>SilverStripe\Security\Group.authorgroup
|
|
editor:
|
|
FirstName: Test
|
|
Surname: Editor
|
|
Groups: =>SilverStripe\Security\Group.editorgroup
|
|
visitor:
|
|
FirstName: Kari
|
|
Surname: Visitor
|
|
Email: visitor@example.com
|
|
|
|
Page:
|
|
# Cant be reviewed, no owners
|
|
home:
|
|
Title: Home
|
|
ContentReviewType: Custom
|
|
NextReviewDate: 2010-02-01
|
|
ReviewPeriodDays: 10
|
|
# Cant be reviewed, no owners
|
|
about:
|
|
Title: About Us
|
|
ContentReviewType: Custom
|
|
NextReviewDate: 2010-02-07
|
|
ReviewPeriodDays: 10
|
|
staff:
|
|
Title: Staff
|
|
ContentReviewType: Custom
|
|
NextReviewDate: 2010-02-14
|
|
ReviewPeriodDays: 10
|
|
ContentReviewUsers: =>SilverStripe\Security\Member.author
|
|
contact:
|
|
Title: Contact Us
|
|
ContentReviewType: Custom
|
|
ReviewPeriodDays: 10
|
|
NextReviewDate: 2010-02-21
|
|
ContentReviewGroups: =>SilverStripe\Security\Group.authorgroup
|
|
contact-child:
|
|
Title: Contact Us Child
|
|
ContentReviewType: Inherit
|
|
ParentID: =>Page.contact
|
|
# Cant be reviewed, no NextReviewDate
|
|
no-review:
|
|
Title: Page without review date
|
|
ContentReviewType: Custom
|
|
ContentReviewUsers: =>SilverStripe\Security\Member.author
|
|
# Cant be reviewed, no NextReviewDate
|
|
group-owned:
|
|
Title: Page owned by group
|
|
ContentReviewType: Custom
|
|
ContentReviewGroups: =>SilverStripe\Security\Group.authorgroup
|