CCM NG: Updates for compatibility with Hibernate 5.3 and newer
git-svn-id: https://svn.libreccm.org/ccm/ccm_ng@5881 8810af33-2d31-482b-a856-94f89814c4df
parent
b0c4bf5e68
commit
51b7cb3f1a
|
|
@ -63,7 +63,7 @@ public class LocalizedString implements Serializable {
|
|||
/**
|
||||
* The localised values of the string.
|
||||
*/
|
||||
@ElementCollection(fetch = FetchType.EAGER)
|
||||
@ElementCollection(fetch = FetchType.LAZY)
|
||||
@MapKeyColumn(name = "LOCALE")
|
||||
@Column(name = "LOCALIZED_VALUE")
|
||||
@Basic
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ import javax.persistence.Table;
|
|||
*
|
||||
* Only applications which are different for each site should extend this class.
|
||||
* For example for the Admin application or the Content Center application
|
||||
* provided by the ccm-cms module it makes to sense to make them site aware.
|
||||
* provided by the ccm-cms module it makes no sense to make them site aware.
|
||||
* This applications are used to manage objects which are shared by all sites.
|
||||
* Other applications like the Pages application provided by ccm-cms module are
|
||||
* of course site aware. The Pages application for example manages the page tree
|
||||
|
|
|
|||
|
|
@ -142,6 +142,7 @@ public class CategoryManagerTest {
|
|||
.addPackage(org.libreccm.web.CcmApplication.class.getPackage())
|
||||
.addPackage(org.libreccm.workflow.Workflow.class.getPackage())
|
||||
.addPackage(org.libreccm.cdi.utils.CdiUtil.class.getPackage())
|
||||
.addClass(org.libreccm.imexport.Exportable.class)
|
||||
.addClass(com.arsdigita.kernel.KernelConfig.class)
|
||||
.addClass(com.arsdigita.kernel.security.SecurityConfig.class)
|
||||
.addAsLibraries(getModuleDependencies())
|
||||
|
|
@ -197,16 +198,23 @@ public class CategoryManagerTest {
|
|||
* adds an object to a category.
|
||||
*/
|
||||
@Test
|
||||
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest/"
|
||||
+ "data.yml")
|
||||
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest"
|
||||
+ "/data.yml")
|
||||
@ShouldMatchDataSet(
|
||||
excludeColumns = {
|
||||
"categorization_id",
|
||||
"uuid"
|
||||
},
|
||||
orderBy = {
|
||||
"categorizations.object_order"
|
||||
},
|
||||
value = "datasets/org/libreccm/categorization/CategoryManagerTest/"
|
||||
+ "after-add-obj-to-category.yml",
|
||||
excludeColumns = {"categorization_id"})
|
||||
+ "after-add-obj-to-category.yml"
|
||||
)
|
||||
@InSequence(1100)
|
||||
public void addObjectToCategoryBySystemUser() {
|
||||
final Optional<CcmObject> object2 = ccmObjectRepo.findById(-3200L);
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<CcmObject> object2 = ccmObjectRepo.findById(3200L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
|
||||
assertThat(object2.isPresent(), is(true));
|
||||
assertThat(foo.isPresent(), is(true));
|
||||
|
|
@ -220,16 +228,23 @@ public class CategoryManagerTest {
|
|||
* domain to the categories works.
|
||||
*/
|
||||
@Test
|
||||
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest/"
|
||||
+ "data.yml")
|
||||
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest"
|
||||
+ "/data.yml")
|
||||
@ShouldMatchDataSet(
|
||||
value = "datasets/org/libreccm/categorization/CategoryManagerTest/"
|
||||
+ "after-add-obj-to-category.yml",
|
||||
excludeColumns = {"categorization_id"})
|
||||
excludeColumns = {
|
||||
"categorization_id",
|
||||
"uuid"
|
||||
},
|
||||
orderBy = {
|
||||
"categorizations.categorization_id"
|
||||
},
|
||||
value = "datasets/org/libreccm/categorization/CategoryManagerTest"
|
||||
+ "/after-add-obj-to-category.yml"
|
||||
)
|
||||
@InSequence(1200)
|
||||
public void addObjectToCategoryAuthByDomain() {
|
||||
final Optional<CcmObject> object2 = ccmObjectRepo.findById(-3200L);
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<CcmObject> object2 = ccmObjectRepo.findById(3200L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
|
||||
assertThat(object2.isPresent(), is(true));
|
||||
assertThat(foo.isPresent(), is(true));
|
||||
|
|
@ -249,16 +264,23 @@ public class CategoryManagerTest {
|
|||
* categories.
|
||||
*/
|
||||
@Test
|
||||
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest/"
|
||||
+ "data.yml")
|
||||
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest"
|
||||
+ "/data.yml")
|
||||
@ShouldMatchDataSet(
|
||||
value = "datasets/org/libreccm/categorization/CategoryManagerTest/"
|
||||
+ "after-add-obj-to-category.yml",
|
||||
excludeColumns = {"categorization_id"})
|
||||
excludeColumns = {
|
||||
"categorization_id",
|
||||
"uuid"
|
||||
},
|
||||
orderBy = {
|
||||
"categorizations.categorization_id"
|
||||
},
|
||||
value = "datasets/org/libreccm/categorization/CategoryManagerTest"
|
||||
+ "/after-add-obj-to-category.yml"
|
||||
)
|
||||
@InSequence(1300)
|
||||
public void addObjectToCategoryAuthByCategory() {
|
||||
final Optional<CcmObject> object2 = ccmObjectRepo.findById(-3200L);
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<CcmObject> object2 = ccmObjectRepo.findById(3200L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
|
||||
assertThat(object2.isPresent(), is(true));
|
||||
assertThat(foo.isPresent(), is(true));
|
||||
|
|
@ -283,8 +305,8 @@ public class CategoryManagerTest {
|
|||
@ShouldThrowException(UnauthorizedException.class)
|
||||
@InSequence(1400)
|
||||
public void addObjectToCategoryNotAuthorized() {
|
||||
final Optional<CcmObject> object2 = ccmObjectRepo.findById(-3200L);
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<CcmObject> object2 = ccmObjectRepo.findById(3200L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
|
||||
assertThat(object2.isPresent(), is(true));
|
||||
assertThat(foo.isPresent(), is(true));
|
||||
|
|
@ -311,8 +333,8 @@ public class CategoryManagerTest {
|
|||
public void removeObjectFromCategoryBySystemUser()
|
||||
throws ObjectNotAssignedToCategoryException {
|
||||
|
||||
final Optional<CcmObject> object1 = ccmObjectRepo.findById(-3100L);
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<CcmObject> object1 = ccmObjectRepo.findById(3300L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2200L);
|
||||
|
||||
assertThat(object1.isPresent(), is(true));
|
||||
assertThat(foo.isPresent(), is(true));
|
||||
|
|
@ -344,8 +366,8 @@ public class CategoryManagerTest {
|
|||
public void removeObjectFromCategoryAuthByDomain()
|
||||
throws ObjectNotAssignedToCategoryException {
|
||||
|
||||
final Optional<CcmObject> object1 = ccmObjectRepo.findById(-3100L);
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<CcmObject> object1 = ccmObjectRepo.findById(3300L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2200L);
|
||||
|
||||
assertThat(object1.isPresent(), is(true));
|
||||
assertThat(foo.isPresent(), is(true));
|
||||
|
|
@ -370,18 +392,20 @@ public class CategoryManagerTest {
|
|||
* @throws ObjectNotAssignedToCategoryException
|
||||
*/
|
||||
@Test
|
||||
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest/"
|
||||
+ "data.yml")
|
||||
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest"
|
||||
+ "/data.yml")
|
||||
@ShouldMatchDataSet(
|
||||
value = "datasets/org/libreccm/categorization/CategoryManagerTest/"
|
||||
+ "after-remove-obj-from-category.yml",
|
||||
excludeColumns = {"categorization_id"})
|
||||
excludeColumns = {
|
||||
},
|
||||
value = "datasets/org/libreccm/categorization/CategoryManagerTest"
|
||||
+ "/after-remove-obj-from-category.yml"
|
||||
)
|
||||
@InSequence(2200)
|
||||
public void removeObjectFromCategoryAuthByCategory()
|
||||
throws ObjectNotAssignedToCategoryException {
|
||||
|
||||
final Optional<CcmObject> object1 = ccmObjectRepo.findById(-3100L);
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<CcmObject> object1 = ccmObjectRepo.findById(3300L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2200L);
|
||||
|
||||
assertThat(object1.isPresent(), is(true));
|
||||
assertThat(foo.isPresent(), is(true));
|
||||
|
|
@ -411,8 +435,8 @@ public class CategoryManagerTest {
|
|||
public void removeObjectFromCategoryNotAuthorized()
|
||||
throws ObjectNotAssignedToCategoryException {
|
||||
|
||||
final Optional<CcmObject> object1 = ccmObjectRepo.findById(-3100L);
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<CcmObject> object1 = ccmObjectRepo.findById(3100L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
|
||||
assertThat(object1.isPresent(), is(true));
|
||||
assertThat(foo.isPresent(), is(true));
|
||||
|
|
@ -444,7 +468,7 @@ public class CategoryManagerTest {
|
|||
query.setParameter("name", "category-new");
|
||||
final Category sub = query.getSingleResult();
|
||||
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
|
||||
shiro.getSystemUser().execute(
|
||||
() -> categoryManager.addSubCategoryToCategory(sub, foo.get()));
|
||||
|
|
@ -475,7 +499,7 @@ public class CategoryManagerTest {
|
|||
query.setParameter("name", "category-new");
|
||||
final Category sub = query.getSingleResult();
|
||||
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
|
||||
final UsernamePasswordToken token = new UsernamePasswordToken(
|
||||
"jane.doe@example.org", "foo123");
|
||||
|
|
@ -492,12 +516,16 @@ public class CategoryManagerTest {
|
|||
* set of the category.
|
||||
*/
|
||||
@Test
|
||||
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest/"
|
||||
+ "data.yml")
|
||||
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest"
|
||||
+ "/data.yml")
|
||||
@ShouldMatchDataSet(
|
||||
value = "datasets/org/libreccm/categorization/"
|
||||
+ "CategoryManagerTest/after-add-subcategory.yml",
|
||||
excludeColumns = {"object_id", "uuid"})
|
||||
excludeColumns = {
|
||||
"object_id",
|
||||
"uuid"
|
||||
},
|
||||
value = "datasets/org/libreccm/categorization"
|
||||
+ "/CategoryManagerTest/after-add-subcategory.yml"
|
||||
)
|
||||
@InSequence(3000)
|
||||
public void addSubCategoryToCategoryAuthByCategory() {
|
||||
final Category category = new Category();
|
||||
|
|
@ -512,7 +540,7 @@ public class CategoryManagerTest {
|
|||
query.setParameter("name", "category-new");
|
||||
final Category sub = query.getSingleResult();
|
||||
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
|
||||
final UsernamePasswordToken token = new UsernamePasswordToken(
|
||||
"mmuster@example.com", "foo123");
|
||||
|
|
@ -548,7 +576,7 @@ public class CategoryManagerTest {
|
|||
query.setParameter("name", "category-new");
|
||||
final Category sub = query.getSingleResult();
|
||||
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
|
||||
categoryManager.addSubCategoryToCategory(sub, foo.get());
|
||||
}
|
||||
|
|
@ -566,8 +594,8 @@ public class CategoryManagerTest {
|
|||
excludeColumns = {"categorization_id", "object_id"})
|
||||
@InSequence(4000)
|
||||
public void removeSubCategoryFromCategoryBySystemUser() {
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<Category> bar = categoryRepo.findById(-2200L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
final Optional<Category> bar = categoryRepo.findById(2200L);
|
||||
|
||||
shiro.getSystemUser().execute(
|
||||
() -> categoryManager.removeSubCategoryFromCategory(bar.get(),
|
||||
|
|
@ -588,8 +616,8 @@ public class CategoryManagerTest {
|
|||
excludeColumns = {"categorization_id", "object_id"})
|
||||
@InSequence(4000)
|
||||
public void removeSubCategoryFromCategoryAuthByDomain() {
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<Category> bar = categoryRepo.findById(-2200L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
final Optional<Category> bar = categoryRepo.findById(2200L);
|
||||
|
||||
final UsernamePasswordToken token = new UsernamePasswordToken(
|
||||
"jane.doe@example.org", "foo123");
|
||||
|
|
@ -614,8 +642,8 @@ public class CategoryManagerTest {
|
|||
excludeColumns = {"categorization_id", "object_id"})
|
||||
@InSequence(4000)
|
||||
public void removeSubCategoryFromCategoryAuthByCategory() {
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<Category> bar = categoryRepo.findById(-2200L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
final Optional<Category> bar = categoryRepo.findById(2200L);
|
||||
|
||||
final UsernamePasswordToken token = new UsernamePasswordToken(
|
||||
"mmuster@example.com", "foo123");
|
||||
|
|
@ -639,8 +667,8 @@ public class CategoryManagerTest {
|
|||
@ShouldThrowException(UnauthorizedException.class)
|
||||
@InSequence(4000)
|
||||
public void removeSubCategoryFromCategoryNotAuthorized() {
|
||||
final Optional<Category> foo = categoryRepo.findById(-2100L);
|
||||
final Optional<Category> bar = categoryRepo.findById(-2200L);
|
||||
final Optional<Category> foo = categoryRepo.findById(2100L);
|
||||
final Optional<Category> bar = categoryRepo.findById(2200L);
|
||||
|
||||
categoryManager.removeSubCategoryFromCategory(bar.get(), foo.get());
|
||||
}
|
||||
|
|
@ -650,12 +678,20 @@ public class CategoryManagerTest {
|
|||
* created without saving each category after the creation of each category.
|
||||
*/
|
||||
@Test
|
||||
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest/"
|
||||
+ "data.yml")
|
||||
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest"
|
||||
+ "/data.yml")
|
||||
@ShouldMatchDataSet(
|
||||
excludeColumns = {
|
||||
"object_id",
|
||||
"parent_category_id",
|
||||
"uuid"
|
||||
},
|
||||
orderBy = {
|
||||
"categorizations.category_order"
|
||||
},
|
||||
value = "datasets/org/libreccm/categorization/CategoryManagerTest/"
|
||||
+ "after-create-multiple-categories.yml",
|
||||
excludeColumns = {"object_id", "uuid"})
|
||||
+ "after-create-multiple-categories.yml"
|
||||
)
|
||||
@InSequence(5000)
|
||||
public void createMultipleCategories() {
|
||||
|
||||
|
|
@ -703,8 +739,8 @@ public class CategoryManagerTest {
|
|||
+ "data.yml")
|
||||
@InSequence(6000)
|
||||
public void hasIndexObject() {
|
||||
final Optional<Category> category1 = categoryRepo.findById(-2100L);
|
||||
final Optional<Category> category2 = categoryRepo.findById(-2200L);
|
||||
final Optional<Category> category1 = categoryRepo.findById(2100L);
|
||||
final Optional<Category> category2 = categoryRepo.findById(2200L);
|
||||
|
||||
assertThat(categoryManager.hasIndexObject(category1.get()), is(false));
|
||||
assertThat(categoryManager.hasIndexObject(category2.get()), is(true));
|
||||
|
|
@ -712,15 +748,16 @@ public class CategoryManagerTest {
|
|||
|
||||
/**
|
||||
* Tries to retrieve the index object from several categories and verifies
|
||||
* that the expected object is returned by null {@link CategoryManager#getIndexObject(org.libreccm.categorization.Category).
|
||||
* that the expected object is returned by null null null null null null
|
||||
* null null {@link CategoryManager#getIndexObject(org.libreccm.categorization.Category).
|
||||
*/
|
||||
@Test
|
||||
@UsingDataSet(
|
||||
"datasets/org/libreccm/categorization/CategoryManagerTest/data.yml")
|
||||
@InSequence(6500)
|
||||
public void getIndexObject() {
|
||||
final Optional<Category> category1 = categoryRepo.findById(-2100L);
|
||||
final Optional<Category> category2 = categoryRepo.findById(-2200L);
|
||||
final Optional<Category> category1 = categoryRepo.findById(2100L);
|
||||
final Optional<Category> category2 = categoryRepo.findById(2200L);
|
||||
|
||||
assertThat(categoryManager
|
||||
.getIndexObject(category1.get())
|
||||
|
|
@ -749,7 +786,7 @@ public class CategoryManagerTest {
|
|||
public void retrieveMultipleLazyCollections() {
|
||||
assertThat(controller, is(not(nullValue())));
|
||||
|
||||
final Map<String, List<String>> data = controller.getData(-2100L);
|
||||
final Map<String, List<String>> data = controller.getData(2100L);
|
||||
|
||||
final List<String> subCategories = data.get("subCategories");
|
||||
final List<String> objects = data.get("objects");
|
||||
|
|
|
|||
|
|
@ -38,4 +38,4 @@ DELETE FROM ccm_core.ccm_objects_aud;
|
|||
|
||||
DELETE FROM ccm_core.ccm_revisions;
|
||||
|
||||
ALTER SEQUENCE hibernate_sequence RESTART WITH 1;
|
||||
ALTER SEQUENCE hibernate_sequence RESTART WITH 100000;
|
||||
|
|
@ -830,7 +830,7 @@ drop sequence if exists HIBERNATE_SEQUENCE;
|
|||
|
||||
alter table CCM_CORE.WORKFLOWS
|
||||
add constraint UK_o113id7d1cxql0edsrohlnn9x unique (UUID);
|
||||
create sequence hibernate_sequence start with 1 increment by 1;
|
||||
create sequence hibernate_sequence start with 100000 increment by 1;
|
||||
|
||||
alter table CCM_CORE.APPLICATIONS
|
||||
add constraint FKatcp9ij6mbkx0nfeig1o6n3lm
|
||||
|
|
|
|||
|
|
@ -38,4 +38,4 @@ DELETE FROM ccm_core.ccm_objects_aud;
|
|||
|
||||
DELETE FROM ccm_core.ccm_revisions;
|
||||
|
||||
ALTER SEQUENCE hibernate_sequence RESTART;
|
||||
ALTER SEQUENCE hibernate_sequence RESTART with 100000;
|
||||
|
|
@ -830,7 +830,7 @@ create schema CCM_CORE;
|
|||
|
||||
alter table CCM_CORE.WORKFLOWS
|
||||
add constraint UK_o113id7d1cxql0edsrohlnn9x unique (UUID);
|
||||
create sequence hibernate_sequence start 1 increment 1;
|
||||
create sequence hibernate_sequence start 100000 increment 1;
|
||||
|
||||
alter table CCM_CORE.APPLICATIONS
|
||||
add constraint FKatcp9ij6mbkx0nfeig1o6n3lm
|
||||
|
|
|
|||
|
|
@ -1,77 +1,77 @@
|
|||
ccm_core.ccm_objects:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
display_name: test
|
||||
uuid: 3b7c7685-340b-48d2-8f27-781a04833634
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
display_name: test_root
|
||||
uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
display_name: foo
|
||||
uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
display_name: bar
|
||||
uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8
|
||||
- object_id: -3100
|
||||
- object_id: 3100
|
||||
display_name: object1
|
||||
uuid: b82ea94b-875b-46b1-9078-40e457f25868
|
||||
- object_id: -3200
|
||||
- object_id: 3200
|
||||
display_name: object2
|
||||
uuid: 06a838e5-d396-49e4-bcf2-1dabed441406
|
||||
- object_id: -3300
|
||||
- object_id: 3300
|
||||
display_name: object3
|
||||
uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28
|
||||
|
||||
ccm_core.categories:
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
unique_id: test0001
|
||||
name: test-root
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
unique_id: test0002
|
||||
name: foo
|
||||
parent_category_id: -2000
|
||||
parent_category_id: 2000
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
unique_id: test0003
|
||||
name: bar
|
||||
parent_category_id: -2100
|
||||
parent_category_id: 2100
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
|
||||
ccm_core.category_domains:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
domain_key: test
|
||||
root_category_id: -2000
|
||||
root_category_id: 2000
|
||||
uri: http://libreccm.org/test
|
||||
version: 1.0
|
||||
|
||||
ccm_core.categorizations:
|
||||
- categorization_id: -10000
|
||||
- categorization_id: 10000
|
||||
uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf
|
||||
category_id: -2100
|
||||
object_id: -3100
|
||||
category_id: 2100
|
||||
object_id: 3100
|
||||
object_order: 1
|
||||
category_order: 1
|
||||
category_index: false
|
||||
- categorization_id: -10100
|
||||
- categorization_id: 10100
|
||||
uuid: 50780558-5851-4eb2-8398-460173507a1b
|
||||
category_id: -2200
|
||||
object_id: -3300
|
||||
category_id: 2200
|
||||
object_id: 3300
|
||||
category_order: 1
|
||||
object_order: 1
|
||||
category_index: true
|
||||
- categorization_id: -10200
|
||||
- categorization_id: 10200
|
||||
uuid: 05014503-0763-41e3-883c-461721beee6f
|
||||
object_id: -3200
|
||||
category_id: -2100
|
||||
object_id: 3200
|
||||
category_id: 2100
|
||||
category_order: 1
|
||||
object_order: 2
|
||||
category_index: false
|
||||
|
|
@ -1,81 +1,81 @@
|
|||
ccm_core.ccm_objects:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
display_name: test
|
||||
uuid: 3b7c7685-340b-48d2-8f27-781a04833634
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
display_name: test_root
|
||||
uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
display_name: foo
|
||||
uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
display_name: bar
|
||||
uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8
|
||||
- object_id: -3100
|
||||
- object_id: 3100
|
||||
display_name: object1
|
||||
uuid: b82ea94b-875b-46b1-9078-40e457f25868
|
||||
- object_id: -3200
|
||||
- object_id: 3200
|
||||
display_name: object2
|
||||
uuid: 06a838e5-d396-49e4-bcf2-1dabed441406
|
||||
- object_id: -3300
|
||||
- object_id: 3300
|
||||
display_name: object3
|
||||
uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28
|
||||
- object_id: -2300
|
||||
- object_id: 2300
|
||||
display_name: category-new
|
||||
uuid: d9c8ad5d-0450-4d81-be25-721188710880
|
||||
|
||||
ccm_core.categories:
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
unique_id: test0001
|
||||
name: test-root
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
unique_id: test0002
|
||||
name: foo
|
||||
parent_category_id: -2000
|
||||
parent_category_id: 2000
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
unique_id: test0003
|
||||
name: bar
|
||||
parent_category_id: -2100
|
||||
parent_category_id: 2100
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2300
|
||||
- object_id: 2300
|
||||
unique_id: catnew
|
||||
name: category-new
|
||||
parent_category_id: -2100
|
||||
parent_category_id: 2100
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 2
|
||||
|
||||
ccm_core.category_domains:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
domain_key: test
|
||||
root_category_id: -2000
|
||||
root_category_id: 2000
|
||||
uri: http://libreccm.org/test
|
||||
version: 1.0
|
||||
|
||||
ccm_core.categorizations:
|
||||
- categorization_id: -10000
|
||||
- categorization_id: 10000
|
||||
uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf
|
||||
category_id: -2100
|
||||
object_id: -3100
|
||||
category_id: 2100
|
||||
object_id: 3100
|
||||
object_order: 1
|
||||
category_order: 1
|
||||
category_index: false
|
||||
- categorization_id: -10100
|
||||
- categorization_id: 10100
|
||||
uuid: 50780558-5851-4eb2-8398-460173507a1b
|
||||
category_id: -2200
|
||||
object_id: -3300
|
||||
category_id: 2200
|
||||
object_id: 3300
|
||||
category_order: 1
|
||||
object_order: 1
|
||||
category_index: true
|
||||
|
|
|
|||
|
|
@ -1,23 +1,23 @@
|
|||
ccm_core.ccm_objects:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
display_name: test
|
||||
uuid: 3b7c7685-340b-48d2-8f27-781a04833634
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
display_name: test_root
|
||||
uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
display_name: foo
|
||||
uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
display_name: bar
|
||||
uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8
|
||||
- object_id: -3100
|
||||
- object_id: 3100
|
||||
display_name: object1
|
||||
uuid: b82ea94b-875b-46b1-9078-40e457f25868
|
||||
- object_id: -3200
|
||||
- object_id: 3200
|
||||
display_name: object2
|
||||
uuid: 06a838e5-d396-49e4-bcf2-1dabed441406
|
||||
- object_id: -3300
|
||||
- object_id: 3300
|
||||
display_name: object3
|
||||
uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28
|
||||
- object_id: 1
|
||||
|
|
@ -34,25 +34,25 @@ ccm_core.ccm_objects:
|
|||
uuid: 59aa434c-0220-4841-bf3f-f58d311607aa
|
||||
|
||||
ccm_core.categories:
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
unique_id: test0001
|
||||
name: test-root
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
unique_id: test0002
|
||||
name: foo
|
||||
parent_category_id: -2000
|
||||
parent_category_id: 2000
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
unique_id: test0003
|
||||
name: bar
|
||||
parent_category_id: -2100
|
||||
parent_category_id: 2100
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
|
|
@ -60,7 +60,7 @@ ccm_core.categories:
|
|||
- object_id: 1
|
||||
unique_id: com
|
||||
name: com
|
||||
parent_category_id: -2000
|
||||
parent_category_id: 2000
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
|
|
@ -91,24 +91,24 @@ ccm_core.categories:
|
|||
category_order: 1
|
||||
|
||||
ccm_core.category_domains:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
domain_key: test
|
||||
root_category_id: -2000
|
||||
root_category_id: 2000
|
||||
uri: http://libreccm.org/test
|
||||
version: 1.0
|
||||
|
||||
ccm_core.categorizations:
|
||||
- categorization_id: -10000
|
||||
- categorization_id: 10000
|
||||
uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf
|
||||
category_id: -2100
|
||||
object_id: -3100
|
||||
category_id: 2100
|
||||
object_id: 3100
|
||||
object_order: 1
|
||||
category_order: 1
|
||||
category_index: false
|
||||
- categorization_id: -10100
|
||||
- categorization_id: 10100
|
||||
uuid: 50780558-5851-4eb2-8398-460173507a1b
|
||||
category_id: -2200
|
||||
object_id: -3300
|
||||
category_id: 2200
|
||||
object_id: 3300
|
||||
category_order: 1
|
||||
object_order: 1
|
||||
category_index: true
|
||||
|
|
|
|||
|
|
@ -1,63 +1,63 @@
|
|||
ccm_core.ccm_objects:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
display_name: test
|
||||
uuid: 3b7c7685-340b-48d2-8f27-781a04833634
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
display_name: test_root
|
||||
uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
display_name: foo
|
||||
uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
display_name: bar
|
||||
uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8
|
||||
- object_id: -3100
|
||||
- object_id: 3100
|
||||
display_name: object1
|
||||
uuid: b82ea94b-875b-46b1-9078-40e457f25868
|
||||
- object_id: -3200
|
||||
- object_id: 3200
|
||||
display_name: object2
|
||||
uuid: 06a838e5-d396-49e4-bcf2-1dabed441406
|
||||
- object_id: -3300
|
||||
- object_id: 3300
|
||||
display_name: object3
|
||||
uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28
|
||||
|
||||
ccm_core.categories:
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
unique_id: test0001
|
||||
name: test-root
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
unique_id: test0002
|
||||
name: foo
|
||||
parent_category_id: -2000
|
||||
parent_category_id: 2000
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
unique_id: test0003
|
||||
name: bar
|
||||
parent_category_id: -2100
|
||||
parent_category_id: 2100
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
|
||||
ccm_core.category_domains:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
domain_key: test
|
||||
root_category_id: -2000
|
||||
root_category_id: 2000
|
||||
uri: http://libreccm.org/test
|
||||
version: 1.0
|
||||
|
||||
ccm_core.categorizations:
|
||||
- categorization_id: -10000
|
||||
- categorization_id: 10000
|
||||
uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf
|
||||
category_id: -2100
|
||||
object_id: -3100
|
||||
category_id: 2100
|
||||
object_id: 3100
|
||||
object_order: 1
|
||||
category_order: 1
|
||||
category_index: false
|
||||
|
|
|
|||
|
|
@ -1,43 +1,43 @@
|
|||
ccm_core.ccm_objects:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
display_name: test
|
||||
uuid: 3b7c7685-340b-48d2-8f27-781a04833634
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
display_name: test_root
|
||||
uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
display_name: foo
|
||||
uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
display_name: bar
|
||||
uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8
|
||||
- object_id: -3100
|
||||
- object_id: 3100
|
||||
display_name: object1
|
||||
uuid: b82ea94b-875b-46b1-9078-40e457f25868
|
||||
- object_id: -3200
|
||||
- object_id: 3200
|
||||
display_name: object2
|
||||
uuid: 06a838e5-d396-49e4-bcf2-1dabed441406
|
||||
- object_id: -3300
|
||||
- object_id: 3300
|
||||
display_name: object3
|
||||
uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28
|
||||
|
||||
ccm_core.categories:
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
unique_id: test0001
|
||||
name: test-root
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
unique_id: test0002
|
||||
name: foo
|
||||
parent_category_id: -2000
|
||||
parent_category_id: 2000
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
unique_id: test0003
|
||||
name: bar
|
||||
enabled: true
|
||||
|
|
@ -46,24 +46,24 @@ ccm_core.categories:
|
|||
category_order: 0
|
||||
|
||||
ccm_core.category_domains:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
domain_key: test
|
||||
root_category_id: -2000
|
||||
root_category_id: 2000
|
||||
uri: http://libreccm.org/test
|
||||
version: 1.0
|
||||
|
||||
ccm_core.categorizations:
|
||||
- categorization_id: -10000
|
||||
- categorization_id: 10000
|
||||
uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf
|
||||
category_id: -2100
|
||||
object_id: -3100
|
||||
category_id: 2100
|
||||
object_id: 3100
|
||||
object_order: 1
|
||||
category_order: 1
|
||||
category_index: false
|
||||
- categorization_id: -10100
|
||||
- categorization_id: 10100
|
||||
uuid: 50780558-5851-4eb2-8398-460173507a1b
|
||||
category_id: -2200
|
||||
object_id: -3300
|
||||
category_id: 2200
|
||||
object_id: 3300
|
||||
category_order: 1
|
||||
object_order: 1
|
||||
category_index: true
|
||||
|
|
|
|||
|
|
@ -1,87 +1,87 @@
|
|||
ccm_core.ccm_objects:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
display_name: test
|
||||
uuid: 3b7c7685-340b-48d2-8f27-781a04833634
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
display_name: test_root
|
||||
uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
display_name: foo
|
||||
uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
display_name: bar
|
||||
uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8
|
||||
- object_id: -3100
|
||||
- object_id: 3100
|
||||
display_name: object1
|
||||
uuid: b82ea94b-875b-46b1-9078-40e457f25868
|
||||
- object_id: -3200
|
||||
- object_id: 3200
|
||||
display_name: object2
|
||||
uuid: 06a838e5-d396-49e4-bcf2-1dabed441406
|
||||
- object_id: -3300
|
||||
- object_id: 3300
|
||||
display_name: object3
|
||||
uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28
|
||||
|
||||
ccm_core.categories:
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
unique_id: test0001
|
||||
name: test-root
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
unique_id: test0002
|
||||
name: foo
|
||||
parent_category_id: -2000
|
||||
parent_category_id: 2000
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
unique_id: test0003
|
||||
name: bar
|
||||
parent_category_id: -2100
|
||||
parent_category_id: 2100
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
|
||||
ccm_core.category_domains:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
domain_key: test
|
||||
root_category_id: -2000
|
||||
root_category_id: 2000
|
||||
uri: http://libreccm.org/test
|
||||
version: 1.0
|
||||
|
||||
ccm_core.categorizations:
|
||||
- categorization_id: -10000
|
||||
- categorization_id: 10000
|
||||
uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf
|
||||
category_id: -2100
|
||||
object_id: -3100
|
||||
category_id: 2100
|
||||
object_id: 3100
|
||||
object_order: 1
|
||||
category_order: 1
|
||||
category_index: false
|
||||
- categorization_id: -10100
|
||||
- categorization_id: 10100
|
||||
uuid: 50780558-5851-4eb2-8398-460173507a1b
|
||||
category_id: -2200
|
||||
object_id: -3300
|
||||
category_id: 2200
|
||||
object_id: 3300
|
||||
category_order: 1
|
||||
object_order: 1
|
||||
category_index: true
|
||||
|
||||
ccm_core.parties:
|
||||
- party_id: -3000
|
||||
- party_id: 3000
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: public-user
|
||||
- party_id: -3100
|
||||
- party_id: 3100
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: jdoe
|
||||
- party_id: -3200
|
||||
- party_id: 3200
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: mmuster
|
||||
|
||||
ccm_core.users:
|
||||
- party_id: -3000
|
||||
- party_id: 3000
|
||||
given_name: public
|
||||
family_name: user
|
||||
email_address: public-user@localhost
|
||||
|
|
@ -89,7 +89,7 @@ ccm_core.users:
|
|||
bouncing: false
|
||||
verified: true
|
||||
password_reset_required: false
|
||||
- party_id: -3100
|
||||
- party_id: 3100
|
||||
given_name: Jane
|
||||
family_name: Doe
|
||||
email_address: jane.doe@example.org
|
||||
|
|
@ -99,7 +99,7 @@ ccm_core.users:
|
|||
bouncing: false
|
||||
verified: true
|
||||
password_reset_required: false
|
||||
- party_id: -3200
|
||||
- party_id: 3200
|
||||
given_name: Maria
|
||||
family_name: Muster
|
||||
email_address: mmuster@example.com
|
||||
|
|
@ -111,87 +111,87 @@ ccm_core.users:
|
|||
password_reset_required: false
|
||||
|
||||
ccm_core.ccm_roles:
|
||||
- role_id: -4000
|
||||
- role_id: 4000
|
||||
uuid: cb07e4f7-9a77-41e8-af1a-eed318aed596
|
||||
name: domain_test_category_manager
|
||||
- role_id: -4100
|
||||
- role_id: 4100
|
||||
uuid: e9d4bb0a-7218-4ecb-a759-d1623b2d5c00
|
||||
name: category_foo_manager
|
||||
|
||||
ccm_core.role_memberships:
|
||||
- membership_id: -5000
|
||||
- membership_id: 5000
|
||||
uuid: a62fab65-94e0-463b-8d51-6f7585e2417c
|
||||
role_id: -4000
|
||||
member_id: -3100
|
||||
role_id: 4000
|
||||
member_id: 3100
|
||||
- membership_id: 5100
|
||||
uuid: 8fb7b7cc-fe04-4986-93de-73132b94e2fa
|
||||
role_id: -4100
|
||||
member_id: -3200
|
||||
role_id: 4100
|
||||
member_id: 3200
|
||||
|
||||
ccm_core.permissions:
|
||||
- permission_id: -6000
|
||||
- permission_id: 6000
|
||||
uuid: 1f9cd01d-b04f-4cb8-83b7-502a53b442c9
|
||||
granted_privilege: manage_category
|
||||
grantee_id: -4000
|
||||
object_id: -2000
|
||||
grantee_id: 4000
|
||||
object_id: 2000
|
||||
inherited: false
|
||||
- permission_id: -6010
|
||||
- permission_id: 6010
|
||||
uuid: 964ab653-eadf-4c69-b4cb-d90e9834bb81
|
||||
granted_privilege: manage_category
|
||||
grantee_id: -4000
|
||||
object_id: -2100
|
||||
grantee_id: 4000
|
||||
object_id: 2100
|
||||
inherited: true
|
||||
inherited_from_id: -2000
|
||||
- permission_id: -6020
|
||||
inherited_from_id: 2000
|
||||
- permission_id: 6020
|
||||
uuid: c44261af-6522-418d-b7c5-ae3b3dcb02a3
|
||||
granted_privilege: manage_category
|
||||
grantee_id: -4000
|
||||
object_id: -2200
|
||||
grantee_id: 4000
|
||||
object_id: 2200
|
||||
inherited: true
|
||||
inherited_from_id: -2000
|
||||
- permission_id: -6100
|
||||
inherited_from_id: 2000
|
||||
- permission_id: 6100
|
||||
uuid: 8aa98e4d-6fa9-411b-bcb0-3e51bba63a5b
|
||||
granted_privilege: manage_category_objects
|
||||
grantee_id: -4000
|
||||
object_id: -2000
|
||||
grantee_id: 4000
|
||||
object_id: 2000
|
||||
inherited: false
|
||||
- permission_id: -6110
|
||||
- permission_id: 6110
|
||||
uuid: 89fe50b0-6f59-4dfd-8520-f9059ad9d629
|
||||
granted_privilege: manage_category_objects
|
||||
grantee_id: -4000
|
||||
object_id: -2100
|
||||
grantee_id: 4000
|
||||
object_id: 2100
|
||||
inherited: true
|
||||
inherited_from_id: -2000
|
||||
- permission_id: -6120
|
||||
inherited_from_id: 2000
|
||||
- permission_id: 6120
|
||||
uuid: 052ea99f-a0de-4d8b-aebd-69ad9680f921
|
||||
granted_privilege: manage_category_objects
|
||||
grantee_id: -4000
|
||||
object_id: -2200
|
||||
grantee_id: 4000
|
||||
object_id: 2200
|
||||
inherited: true
|
||||
inherited_from_id: -2000
|
||||
- permission_id: -6200
|
||||
inherited_from_id: 2000
|
||||
- permission_id: 6200
|
||||
uuid: daf465e7-bfb3-4847-a5f8-2c985f20cbb8
|
||||
granted_privilege: manage_category
|
||||
grantee_id: -4100
|
||||
object_id: -2100
|
||||
grantee_id: 4100
|
||||
object_id: 2100
|
||||
inherited: false
|
||||
- permission_id: -6210
|
||||
- permission_id: 6210
|
||||
uuid: 23424b24-fa6f-4e2c-86f6-6c10c4342dd7
|
||||
granted_privilege: manage_category
|
||||
grantee_id: -4100
|
||||
object_id: -2200
|
||||
grantee_id: 4100
|
||||
object_id: 2200
|
||||
inherited: true
|
||||
inherited_from_id: -2100
|
||||
- permission_id: -6300
|
||||
inherited_from_id: 2100
|
||||
- permission_id: 6300
|
||||
uuid: 1b58b9ab-7c8a-402f-9fe5-d5f4af8dfa00
|
||||
granted_privilege: manage_category_objects
|
||||
grantee_id: -4100
|
||||
object_id: -2100
|
||||
grantee_id: 4100
|
||||
object_id: 2100
|
||||
inherited: false
|
||||
- permission_id: -6310
|
||||
- permission_id: 6310
|
||||
uuid: 9aafe40c-ce25-4344-bc3f-144a0457191a
|
||||
granted_privilege: manage_category_objects
|
||||
grantee_id: -4100
|
||||
object_id: -2200
|
||||
grantee_id: 4100
|
||||
object_id: 2200
|
||||
inherited: true
|
||||
inherited_from_id: -2100
|
||||
inherited_from_id: 2100
|
||||
|
|
@ -1,45 +1,45 @@
|
|||
ccm_core.ccm_objects:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
display_name: test
|
||||
uuid: d76c9183-5558-4ca6-bd56-3cdd8bdadad6
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
display_name: test_root
|
||||
uuid: 1d533dba-08f2-4d65-948a-3bba953dabab
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
display_name: foo
|
||||
uuid: a83d238a-1df7-4b54-a886-a93f4e816888
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
display_name: bar
|
||||
uuid: 7fd42bcd-c49f-4d8a-be1c-fd88f2e9a7c0
|
||||
- object_id: -2300
|
||||
- object_id: 2300
|
||||
display_name: new-category
|
||||
uuid: dfe81433-de5c-47f2-aaf6-5013636211ee
|
||||
|
||||
ccm_core.categories:
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
unique_id: test0001
|
||||
name: test-root
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
unique_id: test0002
|
||||
name: foo
|
||||
parent_category_id: -2000
|
||||
parent_category_id: 2000
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
unique_id: test0003
|
||||
name: bar
|
||||
parent_category_id: -2100
|
||||
parent_category_id: 2100
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2300
|
||||
- object_id: 2300
|
||||
unique_id: new0001
|
||||
name: new-category
|
||||
enabled: true
|
||||
|
|
@ -48,25 +48,25 @@ ccm_core.categories:
|
|||
category_order: 0
|
||||
|
||||
ccm_core.category_domains:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
domain_key: test
|
||||
root_category_id: -2000
|
||||
root_category_id: 2000
|
||||
uri: http://libreccm.org/test
|
||||
version: 1.0
|
||||
|
||||
ccm_core.parties:
|
||||
- party_id: -100
|
||||
- party_id: 100
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: public-user
|
||||
- party_id: -200
|
||||
- party_id: 200
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: jdoe
|
||||
- party_id: -300
|
||||
- party_id: 300
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: mmuster
|
||||
|
||||
ccm_core.users:
|
||||
- party_id: -100
|
||||
- party_id: 100
|
||||
given_name: public
|
||||
family_name: user
|
||||
email_address: public-user@localhost
|
||||
|
|
@ -74,7 +74,7 @@ ccm_core.users:
|
|||
bouncing: false
|
||||
verified: true
|
||||
password_reset_required: false
|
||||
- party_id: -200
|
||||
- party_id: 200
|
||||
given_name: John
|
||||
family_name: Doe
|
||||
email_address: john.doe@example.org
|
||||
|
|
@ -83,7 +83,7 @@ ccm_core.users:
|
|||
bouncing: false
|
||||
verified: true
|
||||
password_reset_required: false
|
||||
- party_id: -300
|
||||
- party_id: 300
|
||||
given_name: Max
|
||||
family_name: Mustermann
|
||||
email_address: max.mustermann@example.org
|
||||
|
|
@ -94,33 +94,33 @@ ccm_core.users:
|
|||
password_reset_required: false
|
||||
|
||||
ccm_core.ccm_roles:
|
||||
- role_id: -500
|
||||
- role_id: 500
|
||||
uuid: 420f5f60-18a6-4dbe-9160-c730bbe18f45
|
||||
name: category_manager
|
||||
- role_id: -510
|
||||
- role_id: 510
|
||||
uuid: 0aeea94d-3d8e-4a50-807b-e3c857038e22
|
||||
name: category_manager_domain_test
|
||||
|
||||
ccm_core.role_memberships:
|
||||
- membership_id: -600
|
||||
- membership_id: 600
|
||||
uuid: 59bfad40-2bd1-4ddd-91cf-60c51724e29c
|
||||
role_id: -500
|
||||
member_id: -200
|
||||
- membership_id: -610
|
||||
role_id: 500
|
||||
member_id: 200
|
||||
- membership_id: 610
|
||||
uuid: 192024a9-0489-44a0-940f-725b5579a52d
|
||||
role_id: -510
|
||||
member_id: -300
|
||||
role_id: 510
|
||||
member_id: 300
|
||||
|
||||
ccm_core.permissions:
|
||||
- permission_id: -700
|
||||
- permission_id: 700
|
||||
uuid: 70e8b64c-505d-48bd-b196-36c10ed2321a
|
||||
granted_privilege: manage_category
|
||||
grantee_id: -500
|
||||
grantee_id: 500
|
||||
inherited: false
|
||||
- permission_id: -710
|
||||
- permission_id: 710
|
||||
uuid: 1a798119-a4a4-477b-8092-4423d7185e1b
|
||||
granted_privilege: manage_category
|
||||
grantee_id: -510
|
||||
object_id: -1000
|
||||
grantee_id: 510
|
||||
object_id: 1000
|
||||
inherited: false
|
||||
|
||||
|
|
|
|||
|
|
@ -1,62 +1,62 @@
|
|||
ccm_core.ccm_objects:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
display_name: test
|
||||
uuid: d76c9183-5558-4ca6-bd56-3cdd8bdadad6
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
display_name: test_root
|
||||
uuid: 1d533dba-08f2-4d65-948a-3bba953dabab
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
display_name: foo
|
||||
uuid: a83d238a-1df7-4b54-a886-a93f4e816888
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
display_name: bar
|
||||
uuid: 7fd42bcd-c49f-4d8a-be1c-fd88f2e9a7c0
|
||||
|
||||
ccm_core.categories:
|
||||
- object_id: -2000
|
||||
- object_id: 2000
|
||||
unique_id: test0001
|
||||
name: test-root
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2100
|
||||
- object_id: 2100
|
||||
unique_id: test0002
|
||||
name: foo
|
||||
parent_category_id: -2000
|
||||
parent_category_id: 2000
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
- object_id: -2200
|
||||
- object_id: 2200
|
||||
unique_id: test0003
|
||||
name: bar
|
||||
parent_category_id: -2100
|
||||
parent_category_id: 2100
|
||||
enabled: true
|
||||
visible: true
|
||||
abstract_category: false
|
||||
category_order: 0
|
||||
|
||||
ccm_core.category_domains:
|
||||
- object_id: -1000
|
||||
- object_id: 1000
|
||||
domain_key: test
|
||||
root_category_id: -2000
|
||||
root_category_id: 2000
|
||||
uri: http://libreccm.org/test
|
||||
version: 1.0
|
||||
|
||||
ccm_core.parties:
|
||||
- party_id: -100
|
||||
- party_id: 100
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: public-user
|
||||
- party_id: -200
|
||||
- party_id: 200
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: jdoe
|
||||
- party_id: -300
|
||||
- party_id: 300
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: mmuster
|
||||
|
||||
ccm_core.users:
|
||||
- party_id: -100
|
||||
- party_id: 100
|
||||
given_name: public
|
||||
family_name: user
|
||||
email_address: public-user@localhost
|
||||
|
|
@ -64,7 +64,7 @@ ccm_core.users:
|
|||
bouncing: false
|
||||
verified: true
|
||||
password_reset_required: false
|
||||
- party_id: -200
|
||||
- party_id: 200
|
||||
given_name: John
|
||||
family_name: Doe
|
||||
email_address: john.doe@example.org
|
||||
|
|
@ -73,7 +73,7 @@ ccm_core.users:
|
|||
bouncing: false
|
||||
verified: true
|
||||
password_reset_required: false
|
||||
- party_id: -300
|
||||
- party_id: 300
|
||||
given_name: Max
|
||||
family_name: Mustermann
|
||||
email_address: max.mustermann@example.org
|
||||
|
|
@ -84,32 +84,32 @@ ccm_core.users:
|
|||
password_reset_required: false
|
||||
|
||||
ccm_core.ccm_roles:
|
||||
- role_id: -500
|
||||
- role_id: 500
|
||||
uuid: 420f5f60-18a6-4dbe-9160-c730bbe18f45
|
||||
name: category_manager
|
||||
- role_id: -510
|
||||
- role_id: 510
|
||||
uuid: 0aeea94d-3d8e-4a50-807b-e3c857038e22
|
||||
name: category_manager_domain_test
|
||||
|
||||
ccm_core.role_memberships:
|
||||
- membership_id: -600
|
||||
- membership_id: 600
|
||||
uuid: 59bfad40-2bd1-4ddd-91cf-60c51724e29c
|
||||
role_id: -500
|
||||
member_id: -200
|
||||
- membership_id: -610
|
||||
role_id: 500
|
||||
member_id: 200
|
||||
- membership_id: 610
|
||||
uuid: 192024a9-0489-44a0-940f-725b5579a52d
|
||||
role_id: -510
|
||||
member_id: -300
|
||||
role_id: 510
|
||||
member_id: 300
|
||||
|
||||
ccm_core.permissions:
|
||||
- permission_id: -700
|
||||
- permission_id: 700
|
||||
uuid: 70e8b64c-505d-48bd-b196-36c10ed2321a
|
||||
granted_privilege: manage_category
|
||||
grantee_id: -500
|
||||
grantee_id: 500
|
||||
inherited: false
|
||||
- permission_id: -710
|
||||
- permission_id: 710
|
||||
uuid: 1a798119-a4a4-477b-8092-4423d7185e1b
|
||||
granted_privilege: manage_category
|
||||
grantee_id: -510
|
||||
object_id: -1000
|
||||
grantee_id: 510
|
||||
object_id: 1000
|
||||
inherited: false
|
||||
|
|
|
|||
|
|
@ -1,38 +1,38 @@
|
|||
ccm_core.settings:
|
||||
- setting_id: -3100
|
||||
- setting_id: 3100
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: price
|
||||
dtype: BigDecimalSetting
|
||||
setting_value_big_decimal: 109.99
|
||||
- setting_id: -3200
|
||||
- setting_id: 3200
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: enabled
|
||||
dtype: BooleanSetting
|
||||
setting_value_boolean: true
|
||||
- setting_id: -3300
|
||||
- setting_id: 3300
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: minTemperature
|
||||
dtype: DoubleSetting
|
||||
setting_value_double: 23.5
|
||||
- setting_id: -3400
|
||||
- setting_id: 3400
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: itemsPerPage
|
||||
dtype: LongSetting
|
||||
setting_value_long: 30
|
||||
- setting_id: -3500
|
||||
- setting_id: 3500
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: helpUrl
|
||||
dtype: StringSetting
|
||||
setting_value_string: http://www.example.org
|
||||
- setting_id: -3600
|
||||
- setting_id: 3600
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: languages
|
||||
dtype: EnumSetting
|
||||
|
||||
ccm_core.settings_enum_values:
|
||||
- enum_id: -3600
|
||||
- enum_id: 3600
|
||||
value: de
|
||||
- enum_id: -3600
|
||||
- enum_id: 3600
|
||||
value: en
|
||||
- enum_id: -3600
|
||||
- enum_id: 3600
|
||||
value: es
|
||||
|
|
|
|||
|
|
@ -1,46 +1,46 @@
|
|||
ccm_core.settings:
|
||||
- setting_id: -3100
|
||||
- setting_id: 3100
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: price
|
||||
dtype: BigDecimalSetting
|
||||
setting_value_big_decimal: 98.99
|
||||
- setting_id: -3200
|
||||
- setting_id: 3200
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: enabled
|
||||
dtype: BooleanSetting
|
||||
setting_value_boolean: true
|
||||
- setting_id: -3300
|
||||
- setting_id: 3300
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: minTemperature
|
||||
dtype: DoubleSetting
|
||||
setting_value_double: 23.5
|
||||
- setting_id: -3400
|
||||
- setting_id: 3400
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: itemsPerPage
|
||||
dtype: LongSetting
|
||||
setting_value_long: 20
|
||||
- setting_id: -3500
|
||||
- setting_id: 3500
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: helpUrl
|
||||
dtype: StringSetting
|
||||
setting_value_string: http://www.example.org
|
||||
- setting_id: -3600
|
||||
- setting_id: 3600
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: languages
|
||||
dtype: EnumSetting
|
||||
- setting_id: -4000
|
||||
- setting_id: 4000
|
||||
configuration_class: com.example.TestConfiguration
|
||||
name: enabled
|
||||
dtype: BooleanSetting
|
||||
setting_value_boolean: false
|
||||
- setting_id: -4100
|
||||
- setting_id: 4100
|
||||
configuration_class: com.example.TestConfiguration
|
||||
name: itemsPerPage
|
||||
dtype: LongSetting
|
||||
setting_value_long: 40
|
||||
|
||||
ccm_core.settings_enum_values:
|
||||
- enum_id: -3600
|
||||
- enum_id: 3600
|
||||
value: de
|
||||
- enum_id: -3600
|
||||
- enum_id: 3600
|
||||
value: en
|
||||
|
|
|
|||
|
|
@ -1,36 +1,36 @@
|
|||
ccm_core.settings:
|
||||
- setting_id: -3100
|
||||
- setting_id: 3100
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: price
|
||||
dtype: BigDecimalSetting
|
||||
setting_value_big_decimal: 98.99
|
||||
- setting_id: -3200
|
||||
- setting_id: 3200
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: enabled
|
||||
dtype: BooleanSetting
|
||||
setting_value_boolean: true
|
||||
- setting_id: -3300
|
||||
- setting_id: 3300
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: minTemperature
|
||||
dtype: DoubleSetting
|
||||
setting_value_double: 23.5
|
||||
- setting_id: -3400
|
||||
- setting_id: 3400
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: itemsPerPage
|
||||
dtype: LongSetting
|
||||
setting_value_long: 20
|
||||
- setting_id: -3500
|
||||
- setting_id: 3500
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: helpUrl
|
||||
dtype: StringSetting
|
||||
setting_value_string: http://www.example.org
|
||||
- setting_id: -3600
|
||||
- setting_id: 3600
|
||||
configuration_class: org.libreccm.configuration.TestExampleConfiguration
|
||||
name: languages
|
||||
dtype: EnumSetting
|
||||
|
||||
ccm_core.settings_enum_values:
|
||||
- enum_id: -3600
|
||||
- enum_id: 3600
|
||||
value: de
|
||||
- enum_id: -3600
|
||||
- enum_id: 3600
|
||||
value: en
|
||||
|
|
|
|||
|
|
@ -2,12 +2,12 @@
|
|||
"ccm_core.ccm_objects":
|
||||
[
|
||||
{
|
||||
"object_id": -10,
|
||||
"object_id": 10,
|
||||
"display_name": "Test Object 1",
|
||||
"uuid": "14c5303e-19b7-4710-939d-7e7d5eeef155"
|
||||
},
|
||||
{
|
||||
"object_id": -30,
|
||||
"object_id": 30,
|
||||
"display_name": "Test Object 3",
|
||||
"uuid": "6ad52a5f-31a1-4686-affc-c36741e7e949"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
ccm_core.ccm_objects:
|
||||
- object_id: -10
|
||||
- object_id: 10
|
||||
display_name: Test Object 1
|
||||
uuid: 14c5303e-19b7-4710-939d-7e7d5eeef155
|
||||
- object_id: -30
|
||||
- object_id: 30
|
||||
display_name: Test Object 3
|
||||
uuid: 6ad52a5f-31a1-4686-affc-c36741e7e949
|
||||
|
|
@ -2,17 +2,17 @@
|
|||
"ccm_core.ccm_objects":
|
||||
[
|
||||
{
|
||||
"object_id": -10,
|
||||
"object_id": 10,
|
||||
"display_name": "Test Object 1",
|
||||
"uuid": "14c5303e-19b7-4710-939d-7e7d5eeef155"
|
||||
},
|
||||
{
|
||||
"object_id": -20,
|
||||
"object_id": 20,
|
||||
"display_name": "Second Test Object",
|
||||
"uuid": "921bc481-cd82-4138-9791-6df2cfbbebde"
|
||||
},
|
||||
{
|
||||
"object_id": -30,
|
||||
"object_id": 30,
|
||||
"display_name": "Test Object 3",
|
||||
"uuid": "6ad52a5f-31a1-4686-affc-c36741e7e949"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
ccm_core.ccm_objects:
|
||||
- object_id: -10
|
||||
- object_id: 10
|
||||
display_name: Test Object 1
|
||||
uuid: 14c5303e-19b7-4710-939d-7e7d5eeef155
|
||||
- object_id: -20
|
||||
- object_id: 20
|
||||
display_name: Second Test Object
|
||||
uuid: 921bc481-cd82-4138-9791-6df2cfbbebde
|
||||
- object_id: -30
|
||||
- object_id: 30
|
||||
display_name: Test Object 3
|
||||
uuid: 6ad52a5f-31a1-4686-affc-c36741e7e949
|
||||
|
|
@ -2,22 +2,22 @@
|
|||
"ccm_core.ccm_objects":
|
||||
[
|
||||
{
|
||||
"object_id": -10,
|
||||
"object_id": 10,
|
||||
"display_name": "Test Object 1",
|
||||
"uuid": "14c5303e-19b7-4710-939d-7e7d5eeef155"
|
||||
},
|
||||
{
|
||||
"object_id": -20,
|
||||
"object_id": 20,
|
||||
"display_name": "Test Object 2",
|
||||
"uuid": "921bc481-cd82-4138-9791-6df2cfbbebde"
|
||||
},
|
||||
{
|
||||
"object_id": -30,
|
||||
"object_id": 30,
|
||||
"display_name": "Test Object 3",
|
||||
"uuid": "6ad52a5f-31a1-4686-affc-c36741e7e949"
|
||||
},
|
||||
{
|
||||
"object_id": -40,
|
||||
"object_id": 40,
|
||||
"display_name": "Test Object 4",
|
||||
"uuid": "a82338aa-a73f-41d2-bf8c-10bedb405a72"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
ccm_core.ccm_objects:
|
||||
- object_id: -10
|
||||
- object_id: 10
|
||||
display_name: Test Object 1
|
||||
uuid: 14c5303e-19b7-4710-939d-7e7d5eeef155
|
||||
- object_id: -20
|
||||
- object_id: 20
|
||||
display_name: Test Object 2
|
||||
uuid: 921bc481-cd82-4138-9791-6df2cfbbebde
|
||||
- object_id: -30
|
||||
- object_id: 30
|
||||
display_name: Test Object 3
|
||||
uuid: 6ad52a5f-31a1-4686-affc-c36741e7e949
|
||||
- object_id: -40
|
||||
- object_id: 40
|
||||
display_name: Test Object 4
|
||||
uuid: a82338aa-a73f-41d2-bf8c-10bedb405a72
|
||||
|
|
@ -2,17 +2,17 @@
|
|||
"ccm_core.ccm_objects":
|
||||
[
|
||||
{
|
||||
"object_id": -10,
|
||||
"object_id": 10,
|
||||
"display_name": "Test Object 1",
|
||||
"uuid": "14c5303e-19b7-4710-939d-7e7d5eeef155"
|
||||
},
|
||||
{
|
||||
"object_id": -20,
|
||||
"object_id": 20,
|
||||
"display_name": "Test Object 2",
|
||||
"uuid": "921bc481-cd82-4138-9791-6df2cfbbebde"
|
||||
},
|
||||
{
|
||||
"object_id": -30,
|
||||
"object_id": 30,
|
||||
"display_name": "Test Object 3",
|
||||
"uuid": "6ad52a5f-31a1-4686-affc-c36741e7e949"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
ccm_core.ccm_objects:
|
||||
- object_id: -10
|
||||
- object_id: 10
|
||||
display_name: Test Object 1
|
||||
uuid: 14c5303e-19b7-4710-939d-7e7d5eeef155
|
||||
- object_id: -20
|
||||
- object_id: 20
|
||||
display_name: Test Object 2
|
||||
uuid: 921bc481-cd82-4138-9791-6df2cfbbebde
|
||||
- object_id: -30
|
||||
- object_id: 30
|
||||
display_name: Test Object 3
|
||||
uuid: 6ad52a5f-31a1-4686-affc-c36741e7e949
|
||||
|
|
|
|||
|
|
@ -2,16 +2,16 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -25,28 +25,28 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "admins",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
@ -55,19 +55,19 @@
|
|||
"ccm_core.group_memberships":
|
||||
[
|
||||
{
|
||||
"membership_id": -10,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 10,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -20,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 20,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -30,
|
||||
"group_subject_id": -20,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 30,
|
||||
"group_subject_id": 20,
|
||||
"user_subject_id": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -13,26 +13,26 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
ccm_core.ccm_groups:
|
||||
- name: admins
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: users
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: authors
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -10
|
||||
group_subject_id: -30
|
||||
user_subject_id: -10
|
||||
- membership_id: -20
|
||||
group_subject_id: -40
|
||||
user_subject_id: -10
|
||||
- membership_id: -30
|
||||
group_subject_id: -20
|
||||
user_subject_id: -10
|
||||
- membership_id: 10
|
||||
group_subject_id: 30
|
||||
user_subject_id: 10
|
||||
- membership_id: 20
|
||||
group_subject_id: 40
|
||||
user_subject_id: 10
|
||||
- membership_id: 30
|
||||
group_subject_id: 20
|
||||
user_subject_id: 10
|
||||
|
|
|
|||
|
|
@ -2,16 +2,16 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -25,28 +25,28 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "admins",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
@ -55,9 +55,9 @@
|
|||
"ccm_core.group_memberships":
|
||||
[
|
||||
{
|
||||
"membership_id": -10,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 10,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -13,20 +13,20 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
ccm_core.ccm_groups:
|
||||
- name: admins
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: users
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: authors
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -10
|
||||
group_subject_id: -30
|
||||
user_subject_id: -10
|
||||
- membership_id: 10
|
||||
group_subject_id: 30
|
||||
user_subject_id: 10
|
||||
|
|
|
|||
|
|
@ -2,16 +2,16 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -25,28 +25,28 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "admins",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
@ -55,14 +55,14 @@
|
|||
"ccm_core.group_memberships":
|
||||
[
|
||||
{
|
||||
"membership_id": -10,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 10,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -20,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 20,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 10
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -13,23 +13,23 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
ccm_core.ccm_groups:
|
||||
- name: admins
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: users
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: authors
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -10
|
||||
group_subject_id: -30
|
||||
user_subject_id: -10
|
||||
- membership_id: -20
|
||||
group_subject_id: -40
|
||||
user_subject_id: -10
|
||||
- membership_id: 10
|
||||
group_subject_id: 30
|
||||
user_subject_id: 10
|
||||
- membership_id: 20
|
||||
group_subject_id: 40
|
||||
user_subject_id: 10
|
||||
|
|
|
|||
|
|
@ -2,21 +2,21 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "admins",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -30
|
||||
- subject_id: 10
|
||||
- subject_id: 30
|
||||
ccm_core.ccm_groups:
|
||||
- name: admins
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- name: authors
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
|
|
|
|||
|
|
@ -2,28 +2,28 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "admins",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "editors",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,12 +1,12 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
ccm_core.ccm_groups:
|
||||
- name: admins
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- name: users
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: editors
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
|
|
|
|||
|
|
@ -2,35 +2,35 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "admins",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "publishers",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,15 +1,15 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
ccm_core.ccm_groups:
|
||||
- name: admins
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- name: users
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: authors
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: publishers
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
|
|
|
|||
|
|
@ -2,28 +2,28 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "admins",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,12 +1,12 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
ccm_core.ccm_groups:
|
||||
- name: admins
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- name: users
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: authors
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
|
|
|
|||
|
|
@ -2,72 +2,72 @@
|
|||
"ccm_core.ccm_objects":
|
||||
[
|
||||
{
|
||||
"object_id": -10,
|
||||
"object_id": 10,
|
||||
"display_name": "Test Object 1"
|
||||
},
|
||||
{
|
||||
"object_id": -20,
|
||||
"object_id": 20,
|
||||
"display_name": "Test Object 2"
|
||||
},
|
||||
{
|
||||
"object_id": -30,
|
||||
"object_id": 30,
|
||||
"display_name": "Test Object 3"
|
||||
},
|
||||
{
|
||||
"object_id": -40,
|
||||
"object_id": 40,
|
||||
"display_name": "Test Object 4"
|
||||
},
|
||||
{
|
||||
"object_id": -50,
|
||||
"object_id": 50,
|
||||
"display_name": "Test Object 5"
|
||||
},
|
||||
{
|
||||
"object_id": -60,
|
||||
"object_id": 60,
|
||||
"display_name": "Test Object 6"
|
||||
},
|
||||
{
|
||||
"object_id": -70,
|
||||
"object_id": 70,
|
||||
"display_name": "Test Object 7"
|
||||
},
|
||||
{
|
||||
"object_id": -80,
|
||||
"object_id": 80,
|
||||
"display_name": "Test Object 8"
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_privileges":
|
||||
[
|
||||
{
|
||||
"privilege_id": -10,
|
||||
"privilege_id": 10,
|
||||
"label": "admin"
|
||||
},
|
||||
{
|
||||
"privilege_id": -20,
|
||||
"privilege_id": 20,
|
||||
"label": "read"
|
||||
},
|
||||
{
|
||||
"privilege_id": -30,
|
||||
"privilege_id": 30,
|
||||
"label": "write"
|
||||
}
|
||||
],
|
||||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -1
|
||||
"subject_id": 1
|
||||
},
|
||||
{
|
||||
"subject_id": -2
|
||||
"subject_id": 2
|
||||
},
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -81,7 +81,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "webmaster",
|
||||
"subject_id": -1
|
||||
"subject_id": 1
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -92,7 +92,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "public-user",
|
||||
"subject_id": -2
|
||||
"subject_id": 2
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -103,7 +103,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -114,58 +114,58 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fjiajhigafgapoa",
|
||||
"screen_name": "mmuster",
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.group_memberships":
|
||||
[
|
||||
{
|
||||
"membership_id": -10,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 10,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -20,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -50
|
||||
"membership_id": 20,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 50
|
||||
},
|
||||
{
|
||||
"membership_id": -30,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -2
|
||||
"membership_id": 30,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 2
|
||||
},
|
||||
{
|
||||
"membership_id": -40,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 40,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -50,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -50
|
||||
"membership_id": 50,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -50,
|
||||
"user_id": 50,
|
||||
"email_address": "max.mustermann@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
@ -174,146 +174,146 @@
|
|||
"ccm_core.permissions":
|
||||
[
|
||||
{
|
||||
"permission_id": -10,
|
||||
"grantee_id": -1,
|
||||
"granted_privilege_id": -10
|
||||
"permission_id": 10,
|
||||
"grantee_id": 1,
|
||||
"granted_privilege_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -20,
|
||||
"grantee_id": -2,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 20,
|
||||
"grantee_id": 2,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -30,
|
||||
"grantee_id": -10,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 30,
|
||||
"grantee_id": 10,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -40,
|
||||
"grantee_id": -50,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 40,
|
||||
"grantee_id": 50,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -50,
|
||||
"grantee_id": -50,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 50,
|
||||
"grantee_id": 50,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -60,
|
||||
"grantee_id": -50,
|
||||
"object_id": -60,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 60,
|
||||
"grantee_id": 50,
|
||||
"object_id": 60,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -80,
|
||||
"grantee_id": -30,
|
||||
"object_id": -10,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 80,
|
||||
"grantee_id": 30,
|
||||
"object_id": 10,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -90,
|
||||
"grantee_id": -30,
|
||||
"object_id": -20,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 90,
|
||||
"grantee_id": 30,
|
||||
"object_id": 20,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -100,
|
||||
"grantee_id": -30,
|
||||
"object_id": -30,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 100,
|
||||
"grantee_id": 30,
|
||||
"object_id": 30,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -110,
|
||||
"grantee_id": -30,
|
||||
"object_id": -40,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 110,
|
||||
"grantee_id": 30,
|
||||
"object_id": 40,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -120,
|
||||
"grantee_id": -30,
|
||||
"object_id": -80,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 120,
|
||||
"grantee_id": 30,
|
||||
"object_id": 80,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -130,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 130,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -140,
|
||||
"grantee_id": -40,
|
||||
"object_id": -20,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 140,
|
||||
"grantee_id": 40,
|
||||
"object_id": 20,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -150,
|
||||
"grantee_id": -40,
|
||||
"object_id": -30,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 150,
|
||||
"grantee_id": 40,
|
||||
"object_id": 30,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -160,
|
||||
"grantee_id": -40,
|
||||
"object_id": -40,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 160,
|
||||
"grantee_id": 40,
|
||||
"object_id": 40,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -170,
|
||||
"grantee_id": -40,
|
||||
"object_id": -80,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 170,
|
||||
"grantee_id": 40,
|
||||
"object_id": 80,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -180,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 180,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -190,
|
||||
"grantee_id": -40,
|
||||
"object_id": -20,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 190,
|
||||
"grantee_id": 40,
|
||||
"object_id": 20,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -200,
|
||||
"grantee_id": -40,
|
||||
"object_id": -30,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 200,
|
||||
"grantee_id": 40,
|
||||
"object_id": 30,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -220,
|
||||
"grantee_id": -40,
|
||||
"object_id": -40,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 220,
|
||||
"grantee_id": 40,
|
||||
"object_id": 40,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -230,
|
||||
"grantee_id": -40,
|
||||
"object_id": -80,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 230,
|
||||
"grantee_id": 40,
|
||||
"object_id": 80,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -250,
|
||||
"grantee_id": -50,
|
||||
"object_id": -60,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 250,
|
||||
"grantee_id": 50,
|
||||
"object_id": 60,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -260,
|
||||
"grantee_id": -50,
|
||||
"object_id": -60,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 260,
|
||||
"grantee_id": 50,
|
||||
"object_id": 60,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -270,
|
||||
"grantee_id": -10,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 270,
|
||||
"grantee_id": 10,
|
||||
"granted_privilege_id": 20
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,35 +1,35 @@
|
|||
---
|
||||
ccm_core.ccm_objects:
|
||||
- object_id: -10
|
||||
- object_id: 10
|
||||
display_name: Test Object 1
|
||||
- object_id: -20
|
||||
- object_id: 20
|
||||
display_name: Test Object 2
|
||||
- object_id: -30
|
||||
- object_id: 30
|
||||
display_name: Test Object 3
|
||||
- object_id: -40
|
||||
- object_id: 40
|
||||
display_name: Test Object 4
|
||||
- object_id: -50
|
||||
- object_id: 50
|
||||
display_name: Test Object 5
|
||||
- object_id: -60
|
||||
- object_id: 60
|
||||
display_name: Test Object 6
|
||||
- object_id: -70
|
||||
- object_id: 70
|
||||
display_name: Test Object 7
|
||||
- object_id: -80
|
||||
- object_id: 80
|
||||
display_name: Test Object 8
|
||||
ccm_core.ccm_privileges:
|
||||
- privilege_id: -10
|
||||
- privilege_id: 10
|
||||
label: admin
|
||||
- privilege_id: -20
|
||||
- privilege_id: 20
|
||||
label: read
|
||||
- privilege_id: -30
|
||||
- privilege_id: 30
|
||||
label: write
|
||||
ccm_core.subjects:
|
||||
- subject_id: -1
|
||||
- subject_id: -2
|
||||
- subject_id: -10
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: -50
|
||||
- subject_id: 1
|
||||
- subject_id: 2
|
||||
- subject_id: 10
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
- subject_id: 50
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -39,7 +39,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: webmaster
|
||||
subject_id: -1
|
||||
subject_id: 1
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: public-user
|
||||
|
|
@ -48,7 +48,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: public-user
|
||||
subject_id: -2
|
||||
subject_id: 2
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Doe
|
||||
|
|
@ -57,7 +57,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Mustermann
|
||||
|
|
@ -66,129 +66,129 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fjiajhigafgapoa
|
||||
screen_name: mmuster
|
||||
subject_id: -50
|
||||
subject_id: 50
|
||||
ccm_core.ccm_groups:
|
||||
- name: users
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: authors
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -10
|
||||
group_subject_id: -40
|
||||
user_subject_id: -10
|
||||
- membership_id: -20
|
||||
group_subject_id: -40
|
||||
user_subject_id: -50
|
||||
- membership_id: -30
|
||||
group_subject_id: -30
|
||||
user_subject_id: -2
|
||||
- membership_id: -40
|
||||
group_subject_id: -30
|
||||
user_subject_id: -10
|
||||
- membership_id: -50
|
||||
group_subject_id: -30
|
||||
user_subject_id: -50
|
||||
- membership_id: 10
|
||||
group_subject_id: 40
|
||||
user_subject_id: 10
|
||||
- membership_id: 20
|
||||
group_subject_id: 40
|
||||
user_subject_id: 50
|
||||
- membership_id: 30
|
||||
group_subject_id: 30
|
||||
user_subject_id: 2
|
||||
- membership_id: 40
|
||||
group_subject_id: 30
|
||||
user_subject_id: 10
|
||||
- membership_id: 50
|
||||
group_subject_id: 30
|
||||
user_subject_id: 50
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -50
|
||||
- user_id: 50
|
||||
email_address: max.mustermann@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
ccm_core.permissions:
|
||||
- permission_id: -10
|
||||
grantee_id: -1
|
||||
granted_privilege_id: -10
|
||||
- permission_id: -20
|
||||
grantee_id: -2
|
||||
object_id: -50
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -30
|
||||
grantee_id: -10
|
||||
object_id: -50
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -40
|
||||
grantee_id: -50
|
||||
object_id: -50
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -50
|
||||
grantee_id: -50
|
||||
object_id: -50
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -60
|
||||
grantee_id: -50
|
||||
object_id: -60
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -80
|
||||
grantee_id: -30
|
||||
object_id: -10
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -90
|
||||
grantee_id: -30
|
||||
object_id: -20
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -100
|
||||
grantee_id: -30
|
||||
object_id: -30
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -110
|
||||
grantee_id: -30
|
||||
object_id: -40
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -120
|
||||
grantee_id: -30
|
||||
object_id: -80
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -130
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -140
|
||||
grantee_id: -40
|
||||
object_id: -20
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -150
|
||||
grantee_id: -40
|
||||
object_id: -30
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -160
|
||||
grantee_id: -40
|
||||
object_id: -40
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -170
|
||||
grantee_id: -40
|
||||
object_id: -80
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -180
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -190
|
||||
grantee_id: -40
|
||||
object_id: -20
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -200
|
||||
grantee_id: -40
|
||||
object_id: -30
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -220
|
||||
grantee_id: -40
|
||||
object_id: -40
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -230
|
||||
grantee_id: -40
|
||||
object_id: -80
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -250
|
||||
grantee_id: -50
|
||||
object_id: -60
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -260
|
||||
grantee_id: -50
|
||||
object_id: -60
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -270
|
||||
grantee_id: -10
|
||||
granted_privilege_id: -20
|
||||
- permission_id: 10
|
||||
grantee_id: 1
|
||||
granted_privilege_id: 10
|
||||
- permission_id: 20
|
||||
grantee_id: 2
|
||||
object_id: 50
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 30
|
||||
grantee_id: 10
|
||||
object_id: 50
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 40
|
||||
grantee_id: 50
|
||||
object_id: 50
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 50
|
||||
grantee_id: 50
|
||||
object_id: 50
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 60
|
||||
grantee_id: 50
|
||||
object_id: 60
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 80
|
||||
grantee_id: 30
|
||||
object_id: 10
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 90
|
||||
grantee_id: 30
|
||||
object_id: 20
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 100
|
||||
grantee_id: 30
|
||||
object_id: 30
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 110
|
||||
grantee_id: 30
|
||||
object_id: 40
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 120
|
||||
grantee_id: 30
|
||||
object_id: 80
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 130
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 140
|
||||
grantee_id: 40
|
||||
object_id: 20
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 150
|
||||
grantee_id: 40
|
||||
object_id: 30
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 160
|
||||
grantee_id: 40
|
||||
object_id: 40
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 170
|
||||
grantee_id: 40
|
||||
object_id: 80
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 180
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 190
|
||||
grantee_id: 40
|
||||
object_id: 20
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 200
|
||||
grantee_id: 40
|
||||
object_id: 30
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 220
|
||||
grantee_id: 40
|
||||
object_id: 40
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 230
|
||||
grantee_id: 40
|
||||
object_id: 80
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 250
|
||||
grantee_id: 50
|
||||
object_id: 60
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 260
|
||||
grantee_id: 50
|
||||
object_id: 60
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 270
|
||||
grantee_id: 10
|
||||
granted_privilege_id: 20
|
||||
|
|
|
|||
|
|
@ -2,72 +2,72 @@
|
|||
"ccm_core.ccm_objects":
|
||||
[
|
||||
{
|
||||
"object_id": -10,
|
||||
"object_id": 10,
|
||||
"display_name": "Test Object 1"
|
||||
},
|
||||
{
|
||||
"object_id": -20,
|
||||
"object_id": 20,
|
||||
"display_name": "Test Object 2"
|
||||
},
|
||||
{
|
||||
"object_id": -30,
|
||||
"object_id": 30,
|
||||
"display_name": "Test Object 3"
|
||||
},
|
||||
{
|
||||
"object_id": -40,
|
||||
"object_id": 40,
|
||||
"display_name": "Test Object 4"
|
||||
},
|
||||
{
|
||||
"object_id": -50,
|
||||
"object_id": 50,
|
||||
"display_name": "Test Object 5"
|
||||
},
|
||||
{
|
||||
"object_id": -60,
|
||||
"object_id": 60,
|
||||
"display_name": "Test Object 6"
|
||||
},
|
||||
{
|
||||
"object_id": -70,
|
||||
"object_id": 70,
|
||||
"display_name": "Test Object 7"
|
||||
},
|
||||
{
|
||||
"object_id": -80,
|
||||
"object_id": 80,
|
||||
"display_name": "Test Object 8"
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_privileges":
|
||||
[
|
||||
{
|
||||
"privilege_id": -10,
|
||||
"privilege_id": 10,
|
||||
"label": "admin"
|
||||
},
|
||||
{
|
||||
"privilege_id": -20,
|
||||
"privilege_id": 20,
|
||||
"label": "read"
|
||||
},
|
||||
{
|
||||
"privilege_id": -30,
|
||||
"privilege_id": 30,
|
||||
"label": "write"
|
||||
}
|
||||
],
|
||||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -1
|
||||
"subject_id": 1
|
||||
},
|
||||
{
|
||||
"subject_id": -2
|
||||
"subject_id": 2
|
||||
},
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -81,7 +81,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "webmaster",
|
||||
"subject_id": -1
|
||||
"subject_id": 1
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -92,7 +92,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "public-user",
|
||||
"subject_id": -2
|
||||
"subject_id": 2
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -103,7 +103,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -114,58 +114,58 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fjiajhigafgapoa",
|
||||
"screen_name": "mmuster",
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.group_memberships":
|
||||
[
|
||||
{
|
||||
"membership_id": -10,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 10,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -20,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -50
|
||||
"membership_id": 20,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 50
|
||||
},
|
||||
{
|
||||
"membership_id": -30,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -2
|
||||
"membership_id": 30,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 2
|
||||
},
|
||||
{
|
||||
"membership_id": -40,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 40,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -50,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -50
|
||||
"membership_id": 50,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -50,
|
||||
"user_id": 50,
|
||||
"email_address": "max.mustermann@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
@ -174,159 +174,159 @@
|
|||
"ccm_core.permissions":
|
||||
[
|
||||
{
|
||||
"permission_id": -10,
|
||||
"grantee_id": -1,
|
||||
"granted_privilege_id": -10
|
||||
"permission_id": 10,
|
||||
"grantee_id": 1,
|
||||
"granted_privilege_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -20,
|
||||
"grantee_id": -2,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 20,
|
||||
"grantee_id": 2,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -30,
|
||||
"grantee_id": -10,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 30,
|
||||
"grantee_id": 10,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -40,
|
||||
"grantee_id": -50,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 40,
|
||||
"grantee_id": 50,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -50,
|
||||
"grantee_id": -50,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 50,
|
||||
"grantee_id": 50,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -60,
|
||||
"grantee_id": -50,
|
||||
"object_id": -60,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 60,
|
||||
"grantee_id": 50,
|
||||
"object_id": 60,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -80,
|
||||
"grantee_id": -30,
|
||||
"object_id": -10,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 80,
|
||||
"grantee_id": 30,
|
||||
"object_id": 10,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -90,
|
||||
"grantee_id": -30,
|
||||
"object_id": -20,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 90,
|
||||
"grantee_id": 30,
|
||||
"object_id": 20,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -100,
|
||||
"grantee_id": -30,
|
||||
"object_id": -30,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 100,
|
||||
"grantee_id": 30,
|
||||
"object_id": 30,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -110,
|
||||
"grantee_id": -30,
|
||||
"object_id": -40,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 110,
|
||||
"grantee_id": 30,
|
||||
"object_id": 40,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -120,
|
||||
"grantee_id": -30,
|
||||
"object_id": -80,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 120,
|
||||
"grantee_id": 30,
|
||||
"object_id": 80,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -130,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 130,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -140,
|
||||
"grantee_id": -40,
|
||||
"object_id": -20,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 140,
|
||||
"grantee_id": 40,
|
||||
"object_id": 20,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -150,
|
||||
"grantee_id": -40,
|
||||
"object_id": -30,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 150,
|
||||
"grantee_id": 40,
|
||||
"object_id": 30,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -160,
|
||||
"grantee_id": -40,
|
||||
"object_id": -40,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 160,
|
||||
"grantee_id": 40,
|
||||
"object_id": 40,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -170,
|
||||
"grantee_id": -40,
|
||||
"object_id": -80,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 170,
|
||||
"grantee_id": 40,
|
||||
"object_id": 80,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -180,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 180,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -190,
|
||||
"grantee_id": -40,
|
||||
"object_id": -20,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 190,
|
||||
"grantee_id": 40,
|
||||
"object_id": 20,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -200,
|
||||
"grantee_id": -40,
|
||||
"object_id": -30,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 200,
|
||||
"grantee_id": 40,
|
||||
"object_id": 30,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -220,
|
||||
"grantee_id": -40,
|
||||
"object_id": -40,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 220,
|
||||
"grantee_id": 40,
|
||||
"object_id": 40,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -230,
|
||||
"grantee_id": -40,
|
||||
"object_id": -80,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 230,
|
||||
"grantee_id": 40,
|
||||
"object_id": 80,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -250,
|
||||
"grantee_id": -50,
|
||||
"object_id": -60,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 250,
|
||||
"grantee_id": 50,
|
||||
"object_id": 60,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -260,
|
||||
"grantee_id": -50,
|
||||
"object_id": -60,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 260,
|
||||
"grantee_id": 50,
|
||||
"object_id": 60,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -270,
|
||||
"grantee_id": -10,
|
||||
"object_id": -60,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 270,
|
||||
"grantee_id": 10,
|
||||
"object_id": 60,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -280,
|
||||
"grantee_id": -50,
|
||||
"object_id": -70,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 280,
|
||||
"grantee_id": 50,
|
||||
"object_id": 70,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -290,
|
||||
"grantee_id": -50,
|
||||
"object_id": -70,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 290,
|
||||
"grantee_id": 50,
|
||||
"object_id": 70,
|
||||
"granted_privilege_id": 30
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,35 +1,35 @@
|
|||
---
|
||||
ccm_core.ccm_objects:
|
||||
- object_id: -10
|
||||
- object_id: 10
|
||||
display_name: Test Object 1
|
||||
- object_id: -20
|
||||
- object_id: 20
|
||||
display_name: Test Object 2
|
||||
- object_id: -30
|
||||
- object_id: 30
|
||||
display_name: Test Object 3
|
||||
- object_id: -40
|
||||
- object_id: 40
|
||||
display_name: Test Object 4
|
||||
- object_id: -50
|
||||
- object_id: 50
|
||||
display_name: Test Object 5
|
||||
- object_id: -60
|
||||
- object_id: 60
|
||||
display_name: Test Object 6
|
||||
- object_id: -70
|
||||
- object_id: 70
|
||||
display_name: Test Object 7
|
||||
- object_id: -80
|
||||
- object_id: 80
|
||||
display_name: Test Object 8
|
||||
ccm_core.ccm_privileges:
|
||||
- privilege_id: -10
|
||||
- privilege_id: 10
|
||||
label: admin
|
||||
- privilege_id: -20
|
||||
- privilege_id: 20
|
||||
label: read
|
||||
- privilege_id: -30
|
||||
- privilege_id: 30
|
||||
label: write
|
||||
ccm_core.subjects:
|
||||
- subject_id: -1
|
||||
- subject_id: -2
|
||||
- subject_id: -10
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: -50
|
||||
- subject_id: 1
|
||||
- subject_id: 2
|
||||
- subject_id: 10
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
- subject_id: 50
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -39,7 +39,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: webmaster
|
||||
subject_id: -1
|
||||
subject_id: 1
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: public-user
|
||||
|
|
@ -48,7 +48,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: public-user
|
||||
subject_id: -2
|
||||
subject_id: 2
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Doe
|
||||
|
|
@ -57,7 +57,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Mustermann
|
||||
|
|
@ -66,138 +66,138 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fjiajhigafgapoa
|
||||
screen_name: mmuster
|
||||
subject_id: -50
|
||||
subject_id: 50
|
||||
ccm_core.ccm_groups:
|
||||
- name: users
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: authors
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -10
|
||||
group_subject_id: -40
|
||||
user_subject_id: -10
|
||||
- membership_id: -20
|
||||
group_subject_id: -40
|
||||
user_subject_id: -50
|
||||
- membership_id: -30
|
||||
group_subject_id: -30
|
||||
user_subject_id: -2
|
||||
- membership_id: -40
|
||||
group_subject_id: -30
|
||||
user_subject_id: -10
|
||||
- membership_id: -50
|
||||
group_subject_id: -30
|
||||
user_subject_id: -50
|
||||
- membership_id: 10
|
||||
group_subject_id: 40
|
||||
user_subject_id: 10
|
||||
- membership_id: 20
|
||||
group_subject_id: 40
|
||||
user_subject_id: 50
|
||||
- membership_id: 30
|
||||
group_subject_id: 30
|
||||
user_subject_id: 2
|
||||
- membership_id: 40
|
||||
group_subject_id: 30
|
||||
user_subject_id: 10
|
||||
- membership_id: 50
|
||||
group_subject_id: 30
|
||||
user_subject_id: 50
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -50
|
||||
- user_id: 50
|
||||
email_address: max.mustermann@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
ccm_core.permissions:
|
||||
- permission_id: -10
|
||||
grantee_id: -1
|
||||
granted_privilege_id: -10
|
||||
- permission_id: -20
|
||||
grantee_id: -2
|
||||
object_id: -50
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -30
|
||||
grantee_id: -10
|
||||
object_id: -50
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -40
|
||||
grantee_id: -50
|
||||
object_id: -50
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -50
|
||||
grantee_id: -50
|
||||
object_id: -50
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -60
|
||||
grantee_id: -50
|
||||
object_id: -60
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -80
|
||||
grantee_id: -30
|
||||
object_id: -10
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -90
|
||||
grantee_id: -30
|
||||
object_id: -20
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -100
|
||||
grantee_id: -30
|
||||
object_id: -30
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -110
|
||||
grantee_id: -30
|
||||
object_id: -40
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -120
|
||||
grantee_id: -30
|
||||
object_id: -80
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -130
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -140
|
||||
grantee_id: -40
|
||||
object_id: -20
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -150
|
||||
grantee_id: -40
|
||||
object_id: -30
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -160
|
||||
grantee_id: -40
|
||||
object_id: -40
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -170
|
||||
grantee_id: -40
|
||||
object_id: -80
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -180
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -190
|
||||
grantee_id: -40
|
||||
object_id: -20
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -200
|
||||
grantee_id: -40
|
||||
object_id: -30
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -220
|
||||
grantee_id: -40
|
||||
object_id: -40
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -230
|
||||
grantee_id: -40
|
||||
object_id: -80
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -250
|
||||
grantee_id: -50
|
||||
object_id: -60
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -260
|
||||
grantee_id: -50
|
||||
object_id: -60
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -270
|
||||
grantee_id: -10
|
||||
object_id: -60
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -280
|
||||
grantee_id: -50
|
||||
object_id: -70
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -290
|
||||
grantee_id: -50
|
||||
object_id: -70
|
||||
granted_privilege_id: -30
|
||||
- permission_id: 10
|
||||
grantee_id: 1
|
||||
granted_privilege_id: 10
|
||||
- permission_id: 20
|
||||
grantee_id: 2
|
||||
object_id: 50
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 30
|
||||
grantee_id: 10
|
||||
object_id: 50
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 40
|
||||
grantee_id: 50
|
||||
object_id: 50
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 50
|
||||
grantee_id: 50
|
||||
object_id: 50
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 60
|
||||
grantee_id: 50
|
||||
object_id: 60
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 80
|
||||
grantee_id: 30
|
||||
object_id: 10
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 90
|
||||
grantee_id: 30
|
||||
object_id: 20
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 100
|
||||
grantee_id: 30
|
||||
object_id: 30
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 110
|
||||
grantee_id: 30
|
||||
object_id: 40
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 120
|
||||
grantee_id: 30
|
||||
object_id: 80
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 130
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 140
|
||||
grantee_id: 40
|
||||
object_id: 20
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 150
|
||||
grantee_id: 40
|
||||
object_id: 30
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 160
|
||||
grantee_id: 40
|
||||
object_id: 40
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 170
|
||||
grantee_id: 40
|
||||
object_id: 80
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 180
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 190
|
||||
grantee_id: 40
|
||||
object_id: 20
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 200
|
||||
grantee_id: 40
|
||||
object_id: 30
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 220
|
||||
grantee_id: 40
|
||||
object_id: 40
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 230
|
||||
grantee_id: 40
|
||||
object_id: 80
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 250
|
||||
grantee_id: 50
|
||||
object_id: 60
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 260
|
||||
grantee_id: 50
|
||||
object_id: 60
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 270
|
||||
grantee_id: 10
|
||||
object_id: 60
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 280
|
||||
grantee_id: 50
|
||||
object_id: 70
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 290
|
||||
grantee_id: 50
|
||||
object_id: 70
|
||||
granted_privilege_id: 30
|
||||
|
|
|
|||
|
|
@ -2,72 +2,72 @@
|
|||
"ccm_core.ccm_objects":
|
||||
[
|
||||
{
|
||||
"object_id": -10,
|
||||
"object_id": 10,
|
||||
"display_name": "Test Object 1"
|
||||
},
|
||||
{
|
||||
"object_id": -20,
|
||||
"object_id": 20,
|
||||
"display_name": "Test Object 2"
|
||||
},
|
||||
{
|
||||
"object_id": -30,
|
||||
"object_id": 30,
|
||||
"display_name": "Test Object 3"
|
||||
},
|
||||
{
|
||||
"object_id": -40,
|
||||
"object_id": 40,
|
||||
"display_name": "Test Object 4"
|
||||
},
|
||||
{
|
||||
"object_id": -50,
|
||||
"object_id": 50,
|
||||
"display_name": "Test Object 5"
|
||||
},
|
||||
{
|
||||
"object_id": -60,
|
||||
"object_id": 60,
|
||||
"display_name": "Test Object 6"
|
||||
},
|
||||
{
|
||||
"object_id": -70,
|
||||
"object_id": 70,
|
||||
"display_name": "Test Object 7"
|
||||
},
|
||||
{
|
||||
"object_id": -80,
|
||||
"object_id": 80,
|
||||
"display_name": "Test Object 8"
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_privileges":
|
||||
[
|
||||
{
|
||||
"privilege_id": -10,
|
||||
"privilege_id": 10,
|
||||
"label": "admin"
|
||||
},
|
||||
{
|
||||
"privilege_id": -20,
|
||||
"privilege_id": 20,
|
||||
"label": "read"
|
||||
},
|
||||
{
|
||||
"privilege_id": -30,
|
||||
"privilege_id": 30,
|
||||
"label": "write"
|
||||
}
|
||||
],
|
||||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -1
|
||||
"subject_id": 1
|
||||
},
|
||||
{
|
||||
"subject_id": -2
|
||||
"subject_id": 2
|
||||
},
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -81,7 +81,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "webmaster",
|
||||
"subject_id": -1
|
||||
"subject_id": 1
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -92,7 +92,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "public-user",
|
||||
"subject_id": -2
|
||||
"subject_id": 2
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -103,7 +103,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -114,58 +114,58 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fjiajhigafgapoa",
|
||||
"screen_name": "mmuster",
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.group_memberships":
|
||||
[
|
||||
{
|
||||
"membership_id": -10,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 10,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -20,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -50
|
||||
"membership_id": 20,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 50
|
||||
},
|
||||
{
|
||||
"membership_id": -30,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -2
|
||||
"membership_id": 30,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 2
|
||||
},
|
||||
{
|
||||
"membership_id": -40,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 40,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -50,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -50
|
||||
"membership_id": 50,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -50,
|
||||
"user_id": 50,
|
||||
"email_address": "max.mustermann@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
@ -174,129 +174,129 @@
|
|||
"ccm_core.permissions":
|
||||
[
|
||||
{
|
||||
"permission_id": -10,
|
||||
"grantee_id": -1,
|
||||
"granted_privilege_id": -10
|
||||
"permission_id": 10,
|
||||
"grantee_id": 1,
|
||||
"granted_privilege_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -20,
|
||||
"grantee_id": -2,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 20,
|
||||
"grantee_id": 2,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -40,
|
||||
"grantee_id": -50,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 40,
|
||||
"grantee_id": 50,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -50,
|
||||
"grantee_id": -50,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 50,
|
||||
"grantee_id": 50,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -60,
|
||||
"grantee_id": -50,
|
||||
"object_id": -60,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 60,
|
||||
"grantee_id": 50,
|
||||
"object_id": 60,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -80,
|
||||
"grantee_id": -30,
|
||||
"object_id": -10,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 80,
|
||||
"grantee_id": 30,
|
||||
"object_id": 10,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -90,
|
||||
"grantee_id": -30,
|
||||
"object_id": -20,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 90,
|
||||
"grantee_id": 30,
|
||||
"object_id": 20,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -100,
|
||||
"grantee_id": -30,
|
||||
"object_id": -30,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 100,
|
||||
"grantee_id": 30,
|
||||
"object_id": 30,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -110,
|
||||
"grantee_id": -30,
|
||||
"object_id": -40,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 110,
|
||||
"grantee_id": 30,
|
||||
"object_id": 40,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -120,
|
||||
"grantee_id": -30,
|
||||
"object_id": -80,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 120,
|
||||
"grantee_id": 30,
|
||||
"object_id": 80,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -130,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 130,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -140,
|
||||
"grantee_id": -40,
|
||||
"object_id": -20,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 140,
|
||||
"grantee_id": 40,
|
||||
"object_id": 20,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -150,
|
||||
"grantee_id": -40,
|
||||
"object_id": -30,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 150,
|
||||
"grantee_id": 40,
|
||||
"object_id": 30,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -160,
|
||||
"grantee_id": -40,
|
||||
"object_id": -40,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 160,
|
||||
"grantee_id": 40,
|
||||
"object_id": 40,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -170,
|
||||
"grantee_id": -40,
|
||||
"object_id": -80,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 170,
|
||||
"grantee_id": 40,
|
||||
"object_id": 80,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -180,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 180,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -190,
|
||||
"grantee_id": -40,
|
||||
"object_id": -20,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 190,
|
||||
"grantee_id": 40,
|
||||
"object_id": 20,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -200,
|
||||
"grantee_id": -40,
|
||||
"object_id": -30,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 200,
|
||||
"grantee_id": 40,
|
||||
"object_id": 30,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -220,
|
||||
"grantee_id": -40,
|
||||
"object_id": -40,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 220,
|
||||
"grantee_id": 40,
|
||||
"object_id": 40,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -230,
|
||||
"grantee_id": -40,
|
||||
"object_id": -80,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 230,
|
||||
"grantee_id": 40,
|
||||
"object_id": 80,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -250,
|
||||
"grantee_id": -50,
|
||||
"object_id": -60,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 250,
|
||||
"grantee_id": 50,
|
||||
"object_id": 60,
|
||||
"granted_privilege_id": 20
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,35 +1,35 @@
|
|||
---
|
||||
ccm_core.ccm_objects:
|
||||
- object_id: -10
|
||||
- object_id: 10
|
||||
display_name: Test Object 1
|
||||
- object_id: -20
|
||||
- object_id: 20
|
||||
display_name: Test Object 2
|
||||
- object_id: -30
|
||||
- object_id: 30
|
||||
display_name: Test Object 3
|
||||
- object_id: -40
|
||||
- object_id: 40
|
||||
display_name: Test Object 4
|
||||
- object_id: -50
|
||||
- object_id: 50
|
||||
display_name: Test Object 5
|
||||
- object_id: -60
|
||||
- object_id: 60
|
||||
display_name: Test Object 6
|
||||
- object_id: -70
|
||||
- object_id: 70
|
||||
display_name: Test Object 7
|
||||
- object_id: -80
|
||||
- object_id: 80
|
||||
display_name: Test Object 8
|
||||
ccm_core.ccm_privileges:
|
||||
- privilege_id: -10
|
||||
- privilege_id: 10
|
||||
label: admin
|
||||
- privilege_id: -20
|
||||
- privilege_id: 20
|
||||
label: read
|
||||
- privilege_id: -30
|
||||
- privilege_id: 30
|
||||
label: write
|
||||
ccm_core.subjects:
|
||||
- subject_id: -1
|
||||
- subject_id: -2
|
||||
- subject_id: -10
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: -50
|
||||
- subject_id: 1
|
||||
- subject_id: 2
|
||||
- subject_id: 10
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
- subject_id: 50
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -39,7 +39,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: webmaster
|
||||
subject_id: -1
|
||||
subject_id: 1
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: public-user
|
||||
|
|
@ -48,7 +48,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: public-user
|
||||
subject_id: -2
|
||||
subject_id: 2
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Doe
|
||||
|
|
@ -57,7 +57,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Mustermann
|
||||
|
|
@ -66,118 +66,118 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fjiajhigafgapoa
|
||||
screen_name: mmuster
|
||||
subject_id: -50
|
||||
subject_id: 50
|
||||
ccm_core.ccm_groups:
|
||||
- name: users
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: authors
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -10
|
||||
group_subject_id: -40
|
||||
user_subject_id: -10
|
||||
- membership_id: -20
|
||||
group_subject_id: -40
|
||||
user_subject_id: -50
|
||||
- membership_id: -30
|
||||
group_subject_id: -30
|
||||
user_subject_id: -2
|
||||
- membership_id: -40
|
||||
group_subject_id: -30
|
||||
user_subject_id: -10
|
||||
- membership_id: -50
|
||||
group_subject_id: -30
|
||||
user_subject_id: -50
|
||||
- membership_id: 10
|
||||
group_subject_id: 40
|
||||
user_subject_id: 10
|
||||
- membership_id: 20
|
||||
group_subject_id: 40
|
||||
user_subject_id: 50
|
||||
- membership_id: 30
|
||||
group_subject_id: 30
|
||||
user_subject_id: 2
|
||||
- membership_id: 40
|
||||
group_subject_id: 30
|
||||
user_subject_id: 10
|
||||
- membership_id: 50
|
||||
group_subject_id: 30
|
||||
user_subject_id: 50
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -50
|
||||
- user_id: 50
|
||||
email_address: max.mustermann@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
ccm_core.permissions:
|
||||
- permission_id: -10
|
||||
grantee_id: -1
|
||||
granted_privilege_id: -10
|
||||
- permission_id: -20
|
||||
grantee_id: -2
|
||||
object_id: -50
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -40
|
||||
grantee_id: -50
|
||||
object_id: -50
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -50
|
||||
grantee_id: -50
|
||||
object_id: -50
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -60
|
||||
grantee_id: -50
|
||||
object_id: -60
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -80
|
||||
grantee_id: -30
|
||||
object_id: -10
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -90
|
||||
grantee_id: -30
|
||||
object_id: -20
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -100
|
||||
grantee_id: -30
|
||||
object_id: -30
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -110
|
||||
grantee_id: -30
|
||||
object_id: -40
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -120
|
||||
grantee_id: -30
|
||||
object_id: -80
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -130
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -140
|
||||
grantee_id: -40
|
||||
object_id: -20
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -150
|
||||
grantee_id: -40
|
||||
object_id: -30
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -160
|
||||
grantee_id: -40
|
||||
object_id: -40
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -170
|
||||
grantee_id: -40
|
||||
object_id: -80
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -180
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -190
|
||||
grantee_id: -40
|
||||
object_id: -20
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -200
|
||||
grantee_id: -40
|
||||
object_id: -30
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -220
|
||||
grantee_id: -40
|
||||
object_id: -40
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -230
|
||||
grantee_id: -40
|
||||
object_id: -80
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -250
|
||||
grantee_id: -50
|
||||
object_id: -60
|
||||
granted_privilege_id: -20
|
||||
- permission_id: 10
|
||||
grantee_id: 1
|
||||
granted_privilege_id: 10
|
||||
- permission_id: 20
|
||||
grantee_id: 2
|
||||
object_id: 50
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 40
|
||||
grantee_id: 50
|
||||
object_id: 50
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 50
|
||||
grantee_id: 50
|
||||
object_id: 50
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 60
|
||||
grantee_id: 50
|
||||
object_id: 60
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 80
|
||||
grantee_id: 30
|
||||
object_id: 10
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 90
|
||||
grantee_id: 30
|
||||
object_id: 20
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 100
|
||||
grantee_id: 30
|
||||
object_id: 30
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 110
|
||||
grantee_id: 30
|
||||
object_id: 40
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 120
|
||||
grantee_id: 30
|
||||
object_id: 80
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 130
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 140
|
||||
grantee_id: 40
|
||||
object_id: 20
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 150
|
||||
grantee_id: 40
|
||||
object_id: 30
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 160
|
||||
grantee_id: 40
|
||||
object_id: 40
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 170
|
||||
grantee_id: 40
|
||||
object_id: 80
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 180
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 190
|
||||
grantee_id: 40
|
||||
object_id: 20
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 200
|
||||
grantee_id: 40
|
||||
object_id: 30
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 220
|
||||
grantee_id: 40
|
||||
object_id: 40
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 230
|
||||
grantee_id: 40
|
||||
object_id: 80
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 250
|
||||
grantee_id: 50
|
||||
object_id: 60
|
||||
granted_privilege_id: 20
|
||||
|
|
|
|||
|
|
@ -2,72 +2,72 @@
|
|||
"ccm_core.ccm_objects":
|
||||
[
|
||||
{
|
||||
"object_id": -10,
|
||||
"object_id": 10,
|
||||
"display_name": "Test Object 1"
|
||||
},
|
||||
{
|
||||
"object_id": -20,
|
||||
"object_id": 20,
|
||||
"display_name": "Test Object 2"
|
||||
},
|
||||
{
|
||||
"object_id": -30,
|
||||
"object_id": 30,
|
||||
"display_name": "Test Object 3"
|
||||
},
|
||||
{
|
||||
"object_id": -40,
|
||||
"object_id": 40,
|
||||
"display_name": "Test Object 4"
|
||||
},
|
||||
{
|
||||
"object_id": -50,
|
||||
"object_id": 50,
|
||||
"display_name": "Test Object 5"
|
||||
},
|
||||
{
|
||||
"object_id": -60,
|
||||
"object_id": 60,
|
||||
"display_name": "Test Object 6"
|
||||
},
|
||||
{
|
||||
"object_id": -70,
|
||||
"object_id": 70,
|
||||
"display_name": "Test Object 7"
|
||||
},
|
||||
{
|
||||
"object_id": -80,
|
||||
"object_id": 80,
|
||||
"display_name": "Test Object 8"
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_privileges":
|
||||
[
|
||||
{
|
||||
"privilege_id": -10,
|
||||
"privilege_id": 10,
|
||||
"label": "admin"
|
||||
},
|
||||
{
|
||||
"privilege_id": -20,
|
||||
"privilege_id": 20,
|
||||
"label": "read"
|
||||
},
|
||||
{
|
||||
"privilege_id": -30,
|
||||
"privilege_id": 30,
|
||||
"label": "write"
|
||||
}
|
||||
],
|
||||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -1
|
||||
"subject_id": 1
|
||||
},
|
||||
{
|
||||
"subject_id": -2
|
||||
"subject_id": 2
|
||||
},
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -81,7 +81,7 @@
|
|||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"password_reset_required": false,
|
||||
"screen_name": "webmaster",
|
||||
"subject_id": -1
|
||||
"subject_id": 1
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -92,7 +92,7 @@
|
|||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"password_reset_required": false,
|
||||
"screen_name": "public-user",
|
||||
"subject_id": -2
|
||||
"subject_id": 2
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -103,7 +103,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -114,58 +114,58 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fjiajhigafgapoa",
|
||||
"screen_name": "mmuster",
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.group_memberships":
|
||||
[
|
||||
{
|
||||
"membership_id": -10,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 10,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -20,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -50
|
||||
"membership_id": 20,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 50
|
||||
},
|
||||
{
|
||||
"membership_id": -30,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -2
|
||||
"membership_id": 30,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 2
|
||||
},
|
||||
{
|
||||
"membership_id": -40,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 40,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -50,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -50
|
||||
"membership_id": 50,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -50,
|
||||
"user_id": 50,
|
||||
"email_address": "max.mustermann@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
@ -174,141 +174,141 @@
|
|||
"ccm_core.permissions":
|
||||
[
|
||||
{
|
||||
"permission_id": -10,
|
||||
"grantee_id": -1,
|
||||
"granted_privilege_id": -10
|
||||
"permission_id": 10,
|
||||
"grantee_id": 1,
|
||||
"granted_privilege_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -20,
|
||||
"grantee_id": -2,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 20,
|
||||
"grantee_id": 2,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -30,
|
||||
"grantee_id": -10,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 30,
|
||||
"grantee_id": 10,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -40,
|
||||
"grantee_id": -50,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 40,
|
||||
"grantee_id": 50,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -50,
|
||||
"grantee_id": -50,
|
||||
"object_id": -50,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 50,
|
||||
"grantee_id": 50,
|
||||
"object_id": 50,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -60,
|
||||
"grantee_id": -50,
|
||||
"object_id": -60,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 60,
|
||||
"grantee_id": 50,
|
||||
"object_id": 60,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -80,
|
||||
"grantee_id": -30,
|
||||
"object_id": -10,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 80,
|
||||
"grantee_id": 30,
|
||||
"object_id": 10,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -90,
|
||||
"grantee_id": -30,
|
||||
"object_id": -20,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 90,
|
||||
"grantee_id": 30,
|
||||
"object_id": 20,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -100,
|
||||
"grantee_id": -30,
|
||||
"object_id": -30,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 100,
|
||||
"grantee_id": 30,
|
||||
"object_id": 30,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -110,
|
||||
"grantee_id": -30,
|
||||
"object_id": -40,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 110,
|
||||
"grantee_id": 30,
|
||||
"object_id": 40,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -120,
|
||||
"grantee_id": -30,
|
||||
"object_id": -80,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 120,
|
||||
"grantee_id": 30,
|
||||
"object_id": 80,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -130,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 130,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -140,
|
||||
"grantee_id": -40,
|
||||
"object_id": -20,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 140,
|
||||
"grantee_id": 40,
|
||||
"object_id": 20,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -150,
|
||||
"grantee_id": -40,
|
||||
"object_id": -30,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 150,
|
||||
"grantee_id": 40,
|
||||
"object_id": 30,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -160,
|
||||
"grantee_id": -40,
|
||||
"object_id": -40,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 160,
|
||||
"grantee_id": 40,
|
||||
"object_id": 40,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -170,
|
||||
"grantee_id": -40,
|
||||
"object_id": -80,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 170,
|
||||
"grantee_id": 40,
|
||||
"object_id": 80,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -180,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 180,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -190,
|
||||
"grantee_id": -40,
|
||||
"object_id": -20,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 190,
|
||||
"grantee_id": 40,
|
||||
"object_id": 20,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -200,
|
||||
"grantee_id": -40,
|
||||
"object_id": -30,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 200,
|
||||
"grantee_id": 40,
|
||||
"object_id": 30,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -220,
|
||||
"grantee_id": -40,
|
||||
"object_id": -40,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 220,
|
||||
"grantee_id": 40,
|
||||
"object_id": 40,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -230,
|
||||
"grantee_id": -40,
|
||||
"object_id": -80,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 230,
|
||||
"grantee_id": 40,
|
||||
"object_id": 80,
|
||||
"granted_privilege_id": 30
|
||||
},
|
||||
{
|
||||
"permission_id": -250,
|
||||
"grantee_id": -50,
|
||||
"object_id": -60,
|
||||
"granted_privilege_id": -20
|
||||
"permission_id": 250,
|
||||
"grantee_id": 50,
|
||||
"object_id": 60,
|
||||
"granted_privilege_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -260,
|
||||
"grantee_id": -50,
|
||||
"object_id": -60,
|
||||
"granted_privilege_id": -30
|
||||
"permission_id": 260,
|
||||
"grantee_id": 50,
|
||||
"object_id": 60,
|
||||
"granted_privilege_id": 30
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,35 +1,35 @@
|
|||
---
|
||||
ccm_core.ccm_objects:
|
||||
- object_id: -10
|
||||
- object_id: 10
|
||||
display_name: Test Object 1
|
||||
- object_id: -20
|
||||
- object_id: 20
|
||||
display_name: Test Object 2
|
||||
- object_id: -30
|
||||
- object_id: 30
|
||||
display_name: Test Object 3
|
||||
- object_id: -40
|
||||
- object_id: 40
|
||||
display_name: Test Object 4
|
||||
- object_id: -50
|
||||
- object_id: 50
|
||||
display_name: Test Object 5
|
||||
- object_id: -60
|
||||
- object_id: 60
|
||||
display_name: Test Object 6
|
||||
- object_id: -70
|
||||
- object_id: 70
|
||||
display_name: Test Object 7
|
||||
- object_id: -80
|
||||
- object_id: 80
|
||||
display_name: Test Object 8
|
||||
ccm_core.ccm_privileges:
|
||||
- privilege_id: -10
|
||||
- privilege_id: 10
|
||||
label: admin
|
||||
- privilege_id: -20
|
||||
- privilege_id: 20
|
||||
label: read
|
||||
- privilege_id: -30
|
||||
- privilege_id: 30
|
||||
label: write
|
||||
ccm_core.subjects:
|
||||
- subject_id: -1
|
||||
- subject_id: -2
|
||||
- subject_id: -10
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: -50
|
||||
- subject_id: 1
|
||||
- subject_id: 2
|
||||
- subject_id: 10
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
- subject_id: 50
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -39,7 +39,7 @@ ccm_core.ccm_users:
|
|||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
password_reset_required: false
|
||||
screen_name: webmaster
|
||||
subject_id: -1
|
||||
subject_id: 1
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: public-user
|
||||
|
|
@ -48,7 +48,7 @@ ccm_core.ccm_users:
|
|||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
password_reset_required: false
|
||||
screen_name: public-user
|
||||
subject_id: -2
|
||||
subject_id: 2
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Doe
|
||||
|
|
@ -57,7 +57,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Mustermann
|
||||
|
|
@ -66,126 +66,126 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fjiajhigafgapoa
|
||||
screen_name: mmuster
|
||||
subject_id: -50
|
||||
subject_id: 50
|
||||
ccm_core.ccm_groups:
|
||||
- name: users
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: authors
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -10
|
||||
group_subject_id: -40
|
||||
user_subject_id: -10
|
||||
- membership_id: -20
|
||||
group_subject_id: -40
|
||||
user_subject_id: -50
|
||||
- membership_id: -30
|
||||
group_subject_id: -30
|
||||
user_subject_id: -2
|
||||
- membership_id: -40
|
||||
group_subject_id: -30
|
||||
user_subject_id: -10
|
||||
- membership_id: -50
|
||||
group_subject_id: -30
|
||||
user_subject_id: -50
|
||||
- membership_id: 10
|
||||
group_subject_id: 40
|
||||
user_subject_id: 10
|
||||
- membership_id: 20
|
||||
group_subject_id: 40
|
||||
user_subject_id: 50
|
||||
- membership_id: 30
|
||||
group_subject_id: 30
|
||||
user_subject_id: 2
|
||||
- membership_id: 40
|
||||
group_subject_id: 30
|
||||
user_subject_id: 10
|
||||
- membership_id: 50
|
||||
group_subject_id: 30
|
||||
user_subject_id: 50
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -50
|
||||
- user_id: 50
|
||||
email_address: max.mustermann@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
ccm_core.permissions:
|
||||
- permission_id: -10
|
||||
grantee_id: -1
|
||||
granted_privilege_id: -10
|
||||
- permission_id: -20
|
||||
grantee_id: -2
|
||||
object_id: -50
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -30
|
||||
grantee_id: -10
|
||||
object_id: -50
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -40
|
||||
grantee_id: -50
|
||||
object_id: -50
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -50
|
||||
grantee_id: -50
|
||||
object_id: -50
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -60
|
||||
grantee_id: -50
|
||||
object_id: -60
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -80
|
||||
grantee_id: -30
|
||||
object_id: -10
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -90
|
||||
grantee_id: -30
|
||||
object_id: -20
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -100
|
||||
grantee_id: -30
|
||||
object_id: -30
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -110
|
||||
grantee_id: -30
|
||||
object_id: -40
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -120
|
||||
grantee_id: -30
|
||||
object_id: -80
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -130
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -140
|
||||
grantee_id: -40
|
||||
object_id: -20
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -150
|
||||
grantee_id: -40
|
||||
object_id: -30
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -160
|
||||
grantee_id: -40
|
||||
object_id: -40
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -170
|
||||
grantee_id: -40
|
||||
object_id: -80
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -180
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -190
|
||||
grantee_id: -40
|
||||
object_id: -20
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -200
|
||||
grantee_id: -40
|
||||
object_id: -30
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -220
|
||||
grantee_id: -40
|
||||
object_id: -40
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -230
|
||||
grantee_id: -40
|
||||
object_id: -80
|
||||
granted_privilege_id: -30
|
||||
- permission_id: -250
|
||||
grantee_id: -50
|
||||
object_id: -60
|
||||
granted_privilege_id: -20
|
||||
- permission_id: -260
|
||||
grantee_id: -50
|
||||
object_id: -60
|
||||
granted_privilege_id: -30
|
||||
- permission_id: 10
|
||||
grantee_id: 1
|
||||
granted_privilege_id: 10
|
||||
- permission_id: 20
|
||||
grantee_id: 2
|
||||
object_id: 50
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 30
|
||||
grantee_id: 10
|
||||
object_id: 50
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 40
|
||||
grantee_id: 50
|
||||
object_id: 50
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 50
|
||||
grantee_id: 50
|
||||
object_id: 50
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 60
|
||||
grantee_id: 50
|
||||
object_id: 60
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 80
|
||||
grantee_id: 30
|
||||
object_id: 10
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 90
|
||||
grantee_id: 30
|
||||
object_id: 20
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 100
|
||||
grantee_id: 30
|
||||
object_id: 30
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 110
|
||||
grantee_id: 30
|
||||
object_id: 40
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 120
|
||||
grantee_id: 30
|
||||
object_id: 80
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 130
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 140
|
||||
grantee_id: 40
|
||||
object_id: 20
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 150
|
||||
grantee_id: 40
|
||||
object_id: 30
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 160
|
||||
grantee_id: 40
|
||||
object_id: 40
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 170
|
||||
grantee_id: 40
|
||||
object_id: 80
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 180
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 190
|
||||
grantee_id: 40
|
||||
object_id: 20
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 200
|
||||
grantee_id: 40
|
||||
object_id: 30
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 220
|
||||
grantee_id: 40
|
||||
object_id: 40
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 230
|
||||
grantee_id: 40
|
||||
object_id: 80
|
||||
granted_privilege_id: 30
|
||||
- permission_id: 250
|
||||
grantee_id: 50
|
||||
object_id: 60
|
||||
granted_privilege_id: 20
|
||||
- permission_id: 260
|
||||
grantee_id: 50
|
||||
object_id: 60
|
||||
granted_privilege_id: 30
|
||||
|
|
|
|||
|
|
@ -2,19 +2,19 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -39,34 +39,34 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fjiajhigafgapoa",
|
||||
"screen_name": "mmuster",
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "admins",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -50,
|
||||
"user_id": 50,
|
||||
"email_address": "max.mustermann@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
@ -75,87 +75,87 @@
|
|||
"ccm_core.group_memberships":
|
||||
[
|
||||
{
|
||||
"membership_id": -10,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 10,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -20,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 20,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -30,
|
||||
"group_subject_id": -20,
|
||||
"user_subject_id": -50
|
||||
"membership_id": 30,
|
||||
"group_subject_id": 20,
|
||||
"user_subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_privileges":
|
||||
[
|
||||
{
|
||||
"privilege_id": -10,
|
||||
"privilege_id": 10,
|
||||
"label": "admin"
|
||||
},
|
||||
{
|
||||
"privilege_id": -20,
|
||||
"privilege_id": 20,
|
||||
"label": "read"
|
||||
},
|
||||
{
|
||||
"privilege_id": -30,
|
||||
"privilege_id": 30,
|
||||
"label": "write"
|
||||
},
|
||||
{
|
||||
"privilege_id": -40,
|
||||
"privilege_id": 40,
|
||||
"label": "unused"
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_objects":
|
||||
[
|
||||
{
|
||||
"object_id": -10,
|
||||
"object_id": 10,
|
||||
"display_name": "Test Object 1"
|
||||
},
|
||||
{
|
||||
"object_id": -20,
|
||||
"object_id": 20,
|
||||
"display_name": "Test Object 2"
|
||||
},
|
||||
{
|
||||
"object_id": -30,
|
||||
"object_id": 30,
|
||||
"display_name": "Test Object 3"
|
||||
},
|
||||
{
|
||||
"object_id": -40,
|
||||
"object_id": 40,
|
||||
"display_name": "Test Object 4"
|
||||
}
|
||||
],
|
||||
"ccm_core.permissions":
|
||||
[
|
||||
{
|
||||
"permission_id": -10,
|
||||
"permission_id": 10,
|
||||
"creation_date": "2015-07-29 14:32:46",
|
||||
"granted_privilege_id": -10,
|
||||
"grantee_id": -20
|
||||
"granted_privilege_id": 10,
|
||||
"grantee_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -20,
|
||||
"permission_id": 20,
|
||||
"creation_date": "2015-07-29 14:34:30",
|
||||
"granted_privilege_id": -20,
|
||||
"grantee_id": -30,
|
||||
"object_id": -10
|
||||
"granted_privilege_id": 20,
|
||||
"grantee_id": 30,
|
||||
"object_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -30,
|
||||
"permission_id": 30,
|
||||
"creation_date": "2015-07-29 14:36:05",
|
||||
"granted_privilege_id": -30,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10
|
||||
"granted_privilege_id": 30,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -40,
|
||||
"permission_id": 40,
|
||||
"creation_date": "2015-07-29 14:37:22",
|
||||
"granted_privilege_id": -20,
|
||||
"grantee_id": -10,
|
||||
"object_id": -20
|
||||
"granted_privilege_id": 20,
|
||||
"grantee_id": 10,
|
||||
"object_id": 20
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: -50
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
- subject_id: 50
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -14,7 +14,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Mustermann
|
||||
|
|
@ -23,68 +23,68 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fjiajhigafgapoa
|
||||
screen_name: mmuster
|
||||
subject_id: -50
|
||||
subject_id: 50
|
||||
ccm_core.ccm_groups:
|
||||
- name: admins
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: users
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: authors
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -50
|
||||
- user_id: 50
|
||||
email_address: max.mustermann@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -10
|
||||
group_subject_id: -30
|
||||
user_subject_id: -10
|
||||
- membership_id: -20
|
||||
group_subject_id: -40
|
||||
user_subject_id: -10
|
||||
- membership_id: -30
|
||||
group_subject_id: -20
|
||||
user_subject_id: -50
|
||||
- membership_id: 10
|
||||
group_subject_id: 30
|
||||
user_subject_id: 10
|
||||
- membership_id: 20
|
||||
group_subject_id: 40
|
||||
user_subject_id: 10
|
||||
- membership_id: 30
|
||||
group_subject_id: 20
|
||||
user_subject_id: 50
|
||||
ccm_core.ccm_privileges:
|
||||
- privilege_id: -10
|
||||
- privilege_id: 10
|
||||
label: admin
|
||||
- privilege_id: -20
|
||||
- privilege_id: 20
|
||||
label: read
|
||||
- privilege_id: -30
|
||||
- privilege_id: 30
|
||||
label: write
|
||||
- privilege_id: -40
|
||||
- privilege_id: 40
|
||||
label: unused
|
||||
ccm_core.ccm_objects:
|
||||
- object_id: -10
|
||||
- object_id: 10
|
||||
display_name: Test Object 1
|
||||
- object_id: -20
|
||||
- object_id: 20
|
||||
display_name: Test Object 2
|
||||
- object_id: -30
|
||||
- object_id: 30
|
||||
display_name: Test Object 3
|
||||
- object_id: -40
|
||||
- object_id: 40
|
||||
display_name: Test Object 4
|
||||
ccm_core.permissions:
|
||||
- permission_id: -10
|
||||
- permission_id: 10
|
||||
creation_date: '2015-07-29 14:32:46'
|
||||
granted_privilege_id: -10
|
||||
grantee_id: -20
|
||||
- permission_id: -20
|
||||
granted_privilege_id: 10
|
||||
grantee_id: 20
|
||||
- permission_id: 20
|
||||
creation_date: '2015-07-29 14:34:30'
|
||||
granted_privilege_id: -20
|
||||
grantee_id: -30
|
||||
object_id: -10
|
||||
- permission_id: -30
|
||||
granted_privilege_id: 20
|
||||
grantee_id: 30
|
||||
object_id: 10
|
||||
- permission_id: 30
|
||||
creation_date: '2015-07-29 14:36:05'
|
||||
granted_privilege_id: -30
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
- permission_id: -40
|
||||
granted_privilege_id: 30
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
- permission_id: 40
|
||||
creation_date: '2015-07-29 14:37:22'
|
||||
granted_privilege_id: -20
|
||||
grantee_id: -10
|
||||
object_id: -20
|
||||
granted_privilege_id: 20
|
||||
grantee_id: 10
|
||||
object_id: 20
|
||||
|
|
|
|||
|
|
@ -2,19 +2,19 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -39,34 +39,34 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fjiajhigafgapoa",
|
||||
"screen_name": "mmuster",
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "admins",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -50,
|
||||
"user_id": 50,
|
||||
"email_address": "max.mustermann@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
@ -75,94 +75,94 @@
|
|||
"ccm_core.group_memberships":
|
||||
[
|
||||
{
|
||||
"membership_id": -10,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 10,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -20,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 20,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -30,
|
||||
"group_subject_id": -20,
|
||||
"user_subject_id": -50
|
||||
"membership_id": 30,
|
||||
"group_subject_id": 20,
|
||||
"user_subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_privileges":
|
||||
[
|
||||
{
|
||||
"privilege_id": -10,
|
||||
"privilege_id": 10,
|
||||
"label": "admin"
|
||||
},
|
||||
{
|
||||
"privilege_id": -20,
|
||||
"privilege_id": 20,
|
||||
"label": "read"
|
||||
},
|
||||
{
|
||||
"privilege_id": -30,
|
||||
"privilege_id": 30,
|
||||
"label": "write"
|
||||
},
|
||||
{
|
||||
"privilege_id": -40,
|
||||
"privilege_id": 40,
|
||||
"label": "unused"
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_objects":
|
||||
[
|
||||
{
|
||||
"object_id": -10,
|
||||
"object_id": 10,
|
||||
"display_name": "Test Object 1"
|
||||
},
|
||||
{
|
||||
"object_id": -20,
|
||||
"object_id": 20,
|
||||
"display_name": "Test Object 2"
|
||||
},
|
||||
{
|
||||
"object_id": -30,
|
||||
"object_id": 30,
|
||||
"display_name": "Test Object 3"
|
||||
},
|
||||
{
|
||||
"object_id": -40,
|
||||
"object_id": 40,
|
||||
"display_name": "Test Object 4"
|
||||
}
|
||||
],
|
||||
"ccm_core.permissions":
|
||||
[
|
||||
{
|
||||
"permission_id": -10,
|
||||
"permission_id": 10,
|
||||
"creation_date": "2015-07-29 14:32:46",
|
||||
"granted_privilege_id": -10,
|
||||
"grantee_id": -20
|
||||
"granted_privilege_id": 10,
|
||||
"grantee_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -20,
|
||||
"permission_id": 20,
|
||||
"creation_date": "2015-07-29 14:34:30",
|
||||
"granted_privilege_id": -20,
|
||||
"grantee_id": -30,
|
||||
"object_id": -10
|
||||
"granted_privilege_id": 20,
|
||||
"grantee_id": 30,
|
||||
"object_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -30,
|
||||
"permission_id": 30,
|
||||
"creation_date": "2015-07-29 14:36:05",
|
||||
"granted_privilege_id": -30,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10
|
||||
"granted_privilege_id": 30,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -35,
|
||||
"permission_id": 35,
|
||||
"creation_date": "2015-07-29 14:57:55",
|
||||
"granted_privilege_id": -20,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10
|
||||
"granted_privilege_id": 20,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -40,
|
||||
"permission_id": 40,
|
||||
"creation_date": "2015-07-29 14:37:22",
|
||||
"granted_privilege_id": -20,
|
||||
"grantee_id": -30,
|
||||
"object_id": -20
|
||||
"granted_privilege_id": 20,
|
||||
"grantee_id": 30,
|
||||
"object_id": 20
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: -50
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
- subject_id: 50
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -14,7 +14,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Mustermann
|
||||
|
|
@ -23,73 +23,73 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fjiajhigafgapoa
|
||||
screen_name: mmuster
|
||||
subject_id: -50
|
||||
subject_id: 50
|
||||
ccm_core.ccm_groups:
|
||||
- name: admins
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: users
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: authors
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -50
|
||||
- user_id: 50
|
||||
email_address: max.mustermann@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -10
|
||||
group_subject_id: -30
|
||||
user_subject_id: -10
|
||||
- membership_id: -20
|
||||
group_subject_id: -40
|
||||
user_subject_id: -10
|
||||
- membership_id: -30
|
||||
group_subject_id: -20
|
||||
user_subject_id: -50
|
||||
- membership_id: 10
|
||||
group_subject_id: 30
|
||||
user_subject_id: 10
|
||||
- membership_id: 20
|
||||
group_subject_id: 40
|
||||
user_subject_id: 10
|
||||
- membership_id: 30
|
||||
group_subject_id: 20
|
||||
user_subject_id: 50
|
||||
ccm_core.ccm_privileges:
|
||||
- privilege_id: -10
|
||||
- privilege_id: 10
|
||||
label: admin
|
||||
- privilege_id: -20
|
||||
- privilege_id: 20
|
||||
label: read
|
||||
- privilege_id: -30
|
||||
- privilege_id: 30
|
||||
label: write
|
||||
- privilege_id: -40
|
||||
- privilege_id: 40
|
||||
label: unused
|
||||
ccm_core.ccm_objects:
|
||||
- object_id: -10
|
||||
- object_id: 10
|
||||
display_name: Test Object 1
|
||||
- object_id: -20
|
||||
- object_id: 20
|
||||
display_name: Test Object 2
|
||||
- object_id: -30
|
||||
- object_id: 30
|
||||
display_name: Test Object 3
|
||||
- object_id: -40
|
||||
- object_id: 40
|
||||
display_name: Test Object 4
|
||||
ccm_core.permissions:
|
||||
- permission_id: -10
|
||||
- permission_id: 10
|
||||
creation_date: '2015-07-29 14:32:46'
|
||||
granted_privilege_id: -10
|
||||
grantee_id: -20
|
||||
- permission_id: -20
|
||||
granted_privilege_id: 10
|
||||
grantee_id: 20
|
||||
- permission_id: 20
|
||||
creation_date: '2015-07-29 14:34:30'
|
||||
granted_privilege_id: -20
|
||||
grantee_id: -30
|
||||
object_id: -10
|
||||
- permission_id: -30
|
||||
granted_privilege_id: 20
|
||||
grantee_id: 30
|
||||
object_id: 10
|
||||
- permission_id: 30
|
||||
creation_date: '2015-07-29 14:36:05'
|
||||
granted_privilege_id: -30
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
- permission_id: -35
|
||||
granted_privilege_id: 30
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
- permission_id: 35
|
||||
creation_date: '2015-07-29 14:57:55'
|
||||
granted_privilege_id: -20
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
- permission_id: -40
|
||||
granted_privilege_id: 20
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
- permission_id: 40
|
||||
creation_date: '2015-07-29 14:37:22'
|
||||
granted_privilege_id: -20
|
||||
grantee_id: -30
|
||||
object_id: -20
|
||||
granted_privilege_id: 20
|
||||
grantee_id: 30
|
||||
object_id: 20
|
||||
|
|
|
|||
|
|
@ -2,19 +2,19 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -39,34 +39,34 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fjiajhigafgapoa",
|
||||
"screen_name": "mmuster",
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "admins",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -50,
|
||||
"user_id": 50,
|
||||
"email_address": "max.mustermann@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
@ -75,106 +75,106 @@
|
|||
"ccm_core.group_memberships":
|
||||
[
|
||||
{
|
||||
"membership_id": -10,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 10,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -20,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 20,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -30,
|
||||
"group_subject_id": -20,
|
||||
"user_subject_id": -50
|
||||
"membership_id": 30,
|
||||
"group_subject_id": 20,
|
||||
"user_subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_privileges":
|
||||
[
|
||||
{
|
||||
"privilege_id": -10,
|
||||
"privilege_id": 10,
|
||||
"label": "admin"
|
||||
},
|
||||
{
|
||||
"privilege_id": -20,
|
||||
"privilege_id": 20,
|
||||
"label": "read"
|
||||
},
|
||||
{
|
||||
"privilege_id": -30,
|
||||
"privilege_id": 30,
|
||||
"label": "write"
|
||||
},
|
||||
{
|
||||
"privilege_id": -40,
|
||||
"privilege_id": 40,
|
||||
"label": "unused"
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_objects":
|
||||
[
|
||||
{
|
||||
"object_id": -10,
|
||||
"object_id": 10,
|
||||
"display_name": "Test Object 1"
|
||||
},
|
||||
{
|
||||
"object_id": -20,
|
||||
"object_id": 20,
|
||||
"display_name": "Test Object 2"
|
||||
},
|
||||
{
|
||||
"object_id": -30,
|
||||
"object_id": 30,
|
||||
"display_name": "Test Object 3"
|
||||
},
|
||||
{
|
||||
"object_id": -40,
|
||||
"object_id": 40,
|
||||
"display_name": "Test Object 4"
|
||||
}
|
||||
],
|
||||
"ccm_core.permissions":
|
||||
[
|
||||
{
|
||||
"permission_id": -10,
|
||||
"permission_id": 10,
|
||||
"creation_date": "2015-07-29 14:32:46",
|
||||
"granted_privilege_id": -10,
|
||||
"grantee_id": -20
|
||||
"granted_privilege_id": 10,
|
||||
"grantee_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -20,
|
||||
"permission_id": 20,
|
||||
"creation_date": "2015-07-29 14:34:30",
|
||||
"granted_privilege_id": -20,
|
||||
"grantee_id": -30,
|
||||
"object_id": -10
|
||||
"granted_privilege_id": 20,
|
||||
"grantee_id": 30,
|
||||
"object_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -30,
|
||||
"permission_id": 30,
|
||||
"creation_date": "2015-07-29 14:36:05",
|
||||
"granted_privilege_id": -30,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10
|
||||
"granted_privilege_id": 30,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -35,
|
||||
"permission_id": 35,
|
||||
"creation_date": "2015-07-29 14:57:55",
|
||||
"granted_privilege_id": -20,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10
|
||||
"granted_privilege_id": 20,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -40,
|
||||
"permission_id": 40,
|
||||
"creation_date": "2015-07-29 14:37:22",
|
||||
"granted_privilege_id": -20,
|
||||
"grantee_id": -10,
|
||||
"object_id": -20
|
||||
"granted_privilege_id": 20,
|
||||
"grantee_id": 10,
|
||||
"object_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -50,
|
||||
"granted_privilege_id": -20,
|
||||
"grantee_id": -50,
|
||||
"object_id": -40
|
||||
"permission_id": 50,
|
||||
"granted_privilege_id": 20,
|
||||
"grantee_id": 50,
|
||||
"object_id": 40
|
||||
},
|
||||
{
|
||||
"permission_id": -60,
|
||||
"granted_privilege_id": -30,
|
||||
"grantee_id": -50,
|
||||
"object_id": -40
|
||||
"permission_id": 60,
|
||||
"granted_privilege_id": 30,
|
||||
"grantee_id": 50,
|
||||
"object_id": 40
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: -50
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
- subject_id: 50
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -14,7 +14,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Mustermann
|
||||
|
|
@ -23,81 +23,81 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fjiajhigafgapoa
|
||||
screen_name: mmuster
|
||||
subject_id: -50
|
||||
subject_id: 50
|
||||
ccm_core.ccm_groups:
|
||||
- name: admins
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: users
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: authors
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -50
|
||||
- user_id: 50
|
||||
email_address: max.mustermann@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -10
|
||||
group_subject_id: -30
|
||||
user_subject_id: -10
|
||||
- membership_id: -20
|
||||
group_subject_id: -40
|
||||
user_subject_id: -10
|
||||
- membership_id: -30
|
||||
group_subject_id: -20
|
||||
user_subject_id: -50
|
||||
- membership_id: 10
|
||||
group_subject_id: 30
|
||||
user_subject_id: 10
|
||||
- membership_id: 20
|
||||
group_subject_id: 40
|
||||
user_subject_id: 10
|
||||
- membership_id: 30
|
||||
group_subject_id: 20
|
||||
user_subject_id: 50
|
||||
ccm_core.ccm_privileges:
|
||||
- privilege_id: -10
|
||||
- privilege_id: 10
|
||||
label: admin
|
||||
- privilege_id: -20
|
||||
- privilege_id: 20
|
||||
label: read
|
||||
- privilege_id: -30
|
||||
- privilege_id: 30
|
||||
label: write
|
||||
- privilege_id: -40
|
||||
- privilege_id: 40
|
||||
label: unused
|
||||
ccm_core.ccm_objects:
|
||||
- object_id: -10
|
||||
- object_id: 10
|
||||
display_name: Test Object 1
|
||||
- object_id: -20
|
||||
- object_id: 20
|
||||
display_name: Test Object 2
|
||||
- object_id: -30
|
||||
- object_id: 30
|
||||
display_name: Test Object 3
|
||||
- object_id: -40
|
||||
- object_id: 40
|
||||
display_name: Test Object 4
|
||||
ccm_core.permissions:
|
||||
- permission_id: -10
|
||||
- permission_id: 10
|
||||
creation_date: '2015-07-29 14:32:46'
|
||||
granted_privilege_id: -10
|
||||
grantee_id: -20
|
||||
- permission_id: -20
|
||||
granted_privilege_id: 10
|
||||
grantee_id: 20
|
||||
- permission_id: 20
|
||||
creation_date: '2015-07-29 14:34:30'
|
||||
granted_privilege_id: -20
|
||||
grantee_id: -30
|
||||
object_id: -10
|
||||
- permission_id: -30
|
||||
granted_privilege_id: 20
|
||||
grantee_id: 30
|
||||
object_id: 10
|
||||
- permission_id: 30
|
||||
creation_date: '2015-07-29 14:36:05'
|
||||
granted_privilege_id: -30
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
- permission_id: -35
|
||||
granted_privilege_id: 30
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
- permission_id: 35
|
||||
creation_date: '2015-07-29 14:57:55'
|
||||
granted_privilege_id: -20
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
- permission_id: -40
|
||||
granted_privilege_id: 20
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
- permission_id: 40
|
||||
creation_date: '2015-07-29 14:37:22'
|
||||
granted_privilege_id: -20
|
||||
grantee_id: -10
|
||||
object_id: -20
|
||||
- permission_id: -50
|
||||
granted_privilege_id: -20
|
||||
grantee_id: -50
|
||||
object_id: -40
|
||||
- permission_id: -60
|
||||
granted_privilege_id: -30
|
||||
grantee_id: -50
|
||||
object_id: -40
|
||||
granted_privilege_id: 20
|
||||
grantee_id: 10
|
||||
object_id: 20
|
||||
- permission_id: 50
|
||||
granted_privilege_id: 20
|
||||
grantee_id: 50
|
||||
object_id: 40
|
||||
- permission_id: 60
|
||||
granted_privilege_id: 30
|
||||
grantee_id: 50
|
||||
object_id: 40
|
||||
|
|
|
|||
|
|
@ -2,19 +2,19 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -39,34 +39,34 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fjiajhigafgapoa",
|
||||
"screen_name": "mmuster",
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "admins",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "users",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "authors",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -50,
|
||||
"user_id": 50,
|
||||
"email_address": "max.mustermann@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
@ -75,94 +75,94 @@
|
|||
"ccm_core.group_memberships":
|
||||
[
|
||||
{
|
||||
"membership_id": -10,
|
||||
"group_subject_id": -30,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 10,
|
||||
"group_subject_id": 30,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -20,
|
||||
"group_subject_id": -40,
|
||||
"user_subject_id": -10
|
||||
"membership_id": 20,
|
||||
"group_subject_id": 40,
|
||||
"user_subject_id": 10
|
||||
},
|
||||
{
|
||||
"membership_id": -30,
|
||||
"group_subject_id": -20,
|
||||
"user_subject_id": -50
|
||||
"membership_id": 30,
|
||||
"group_subject_id": 20,
|
||||
"user_subject_id": 50
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_privileges":
|
||||
[
|
||||
{
|
||||
"privilege_id": -10,
|
||||
"privilege_id": 10,
|
||||
"label": "admin"
|
||||
},
|
||||
{
|
||||
"privilege_id": -20,
|
||||
"privilege_id": 20,
|
||||
"label": "read"
|
||||
},
|
||||
{
|
||||
"privilege_id": -30,
|
||||
"privilege_id": 30,
|
||||
"label": "write"
|
||||
},
|
||||
{
|
||||
"privilege_id": -40,
|
||||
"privilege_id": 40,
|
||||
"label": "unused"
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_objects":
|
||||
[
|
||||
{
|
||||
"object_id": -10,
|
||||
"object_id": 10,
|
||||
"display_name": "Test Object 1"
|
||||
},
|
||||
{
|
||||
"object_id": -20,
|
||||
"object_id": 20,
|
||||
"display_name": "Test Object 2"
|
||||
},
|
||||
{
|
||||
"object_id": -30,
|
||||
"object_id": 30,
|
||||
"display_name": "Test Object 3"
|
||||
},
|
||||
{
|
||||
"object_id": -40,
|
||||
"object_id": 40,
|
||||
"display_name": "Test Object 4"
|
||||
}
|
||||
],
|
||||
"ccm_core.permissions":
|
||||
[
|
||||
{
|
||||
"permission_id": -10,
|
||||
"permission_id": 10,
|
||||
"creation_date": "2015-07-29 14:32:46",
|
||||
"granted_privilege_id": -10,
|
||||
"grantee_id": -20
|
||||
"granted_privilege_id": 10,
|
||||
"grantee_id": 20
|
||||
},
|
||||
{
|
||||
"permission_id": -20,
|
||||
"permission_id": 20,
|
||||
"creation_date": "2015-07-29 14:34:30",
|
||||
"granted_privilege_id": -20,
|
||||
"grantee_id": -30,
|
||||
"object_id": -10
|
||||
"granted_privilege_id": 20,
|
||||
"grantee_id": 30,
|
||||
"object_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -30,
|
||||
"permission_id": 30,
|
||||
"creation_date": "2015-07-29 14:36:05",
|
||||
"granted_privilege_id": -30,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10
|
||||
"granted_privilege_id": 30,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -35,
|
||||
"permission_id": 35,
|
||||
"creation_date": "2015-07-29 14:57:55",
|
||||
"granted_privilege_id": -20,
|
||||
"grantee_id": -40,
|
||||
"object_id": -10
|
||||
"granted_privilege_id": 20,
|
||||
"grantee_id": 40,
|
||||
"object_id": 10
|
||||
},
|
||||
{
|
||||
"permission_id": -40,
|
||||
"permission_id": 40,
|
||||
"creation_date": "2015-07-29 14:37:22",
|
||||
"granted_privilege_id": -20,
|
||||
"grantee_id": -10,
|
||||
"object_id": -20
|
||||
"granted_privilege_id": 20,
|
||||
"grantee_id": 10,
|
||||
"object_id": 20
|
||||
}
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: -50
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
- subject_id: 50
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -14,7 +14,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Mustermann
|
||||
|
|
@ -23,73 +23,73 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fjiajhigafgapoa
|
||||
screen_name: mmuster
|
||||
subject_id: -50
|
||||
subject_id: 50
|
||||
ccm_core.ccm_groups:
|
||||
- name: admins
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: users
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: authors
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -50
|
||||
- user_id: 50
|
||||
email_address: max.mustermann@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -10
|
||||
group_subject_id: -30
|
||||
user_subject_id: -10
|
||||
- membership_id: -20
|
||||
group_subject_id: -40
|
||||
user_subject_id: -10
|
||||
- membership_id: -30
|
||||
group_subject_id: -20
|
||||
user_subject_id: -50
|
||||
- membership_id: 10
|
||||
group_subject_id: 30
|
||||
user_subject_id: 10
|
||||
- membership_id: 20
|
||||
group_subject_id: 40
|
||||
user_subject_id: 10
|
||||
- membership_id: 30
|
||||
group_subject_id: 20
|
||||
user_subject_id: 50
|
||||
ccm_core.ccm_privileges:
|
||||
- privilege_id: -10
|
||||
- privilege_id: 10
|
||||
label: admin
|
||||
- privilege_id: -20
|
||||
- privilege_id: 20
|
||||
label: read
|
||||
- privilege_id: -30
|
||||
- privilege_id: 30
|
||||
label: write
|
||||
- privilege_id: -40
|
||||
- privilege_id: 40
|
||||
label: unused
|
||||
ccm_core.ccm_objects:
|
||||
- object_id: -10
|
||||
- object_id: 10
|
||||
display_name: Test Object 1
|
||||
- object_id: -20
|
||||
- object_id: 20
|
||||
display_name: Test Object 2
|
||||
- object_id: -30
|
||||
- object_id: 30
|
||||
display_name: Test Object 3
|
||||
- object_id: -40
|
||||
- object_id: 40
|
||||
display_name: Test Object 4
|
||||
ccm_core.permissions:
|
||||
- permission_id: -10
|
||||
- permission_id: 10
|
||||
creation_date: '2015-07-29 14:32:46'
|
||||
granted_privilege_id: -10
|
||||
grantee_id: -20
|
||||
- permission_id: -20
|
||||
granted_privilege_id: 10
|
||||
grantee_id: 20
|
||||
- permission_id: 20
|
||||
creation_date: '2015-07-29 14:34:30'
|
||||
granted_privilege_id: -20
|
||||
grantee_id: -30
|
||||
object_id: -10
|
||||
- permission_id: -30
|
||||
granted_privilege_id: 20
|
||||
grantee_id: 30
|
||||
object_id: 10
|
||||
- permission_id: 30
|
||||
creation_date: '2015-07-29 14:36:05'
|
||||
granted_privilege_id: -30
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
- permission_id: -35
|
||||
granted_privilege_id: 30
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
- permission_id: 35
|
||||
creation_date: '2015-07-29 14:57:55'
|
||||
granted_privilege_id: -20
|
||||
grantee_id: -40
|
||||
object_id: -10
|
||||
- permission_id: -40
|
||||
granted_privilege_id: 20
|
||||
grantee_id: 40
|
||||
object_id: 10
|
||||
- permission_id: 40
|
||||
creation_date: '2015-07-29 14:37:22'
|
||||
granted_privilege_id: -20
|
||||
grantee_id: -10
|
||||
object_id: -20
|
||||
granted_privilege_id: 20
|
||||
grantee_id: 10
|
||||
object_id: 20
|
||||
|
|
|
|||
|
|
@ -2,19 +2,19 @@
|
|||
"ccm_core.ccm_privileges":
|
||||
[
|
||||
{
|
||||
"privilege_id": -10,
|
||||
"privilege_id": 10,
|
||||
"label": "admin"
|
||||
},
|
||||
{
|
||||
"privilege_id": -20,
|
||||
"privilege_id": 20,
|
||||
"label": "read"
|
||||
},
|
||||
{
|
||||
"privilege_id": -30,
|
||||
"privilege_id": 30,
|
||||
"label": "write"
|
||||
},
|
||||
{
|
||||
"privilege_id": -40,
|
||||
"privilege_id": 40,
|
||||
"label": "publish"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
---
|
||||
ccm_core.ccm_privileges:
|
||||
- privilege_id: -10
|
||||
- privilege_id: 10
|
||||
label: admin
|
||||
- privilege_id: -20
|
||||
- privilege_id: 20
|
||||
label: read
|
||||
- privilege_id: -30
|
||||
- privilege_id: 30
|
||||
label: write
|
||||
- privilege_id: -40
|
||||
- privilege_id: 40
|
||||
label: publish
|
||||
|
|
|
|||
|
|
@ -2,11 +2,11 @@
|
|||
"ccm_core.ccm_privileges":
|
||||
[
|
||||
{
|
||||
"privilege_id": -10,
|
||||
"privilege_id": 10,
|
||||
"label": "admin"
|
||||
},
|
||||
{
|
||||
"privilege_id": -20,
|
||||
"privilege_id": 20,
|
||||
"label": "read"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
ccm_core.ccm_privileges:
|
||||
- privilege_id: -10
|
||||
- privilege_id: 10
|
||||
label: admin
|
||||
- privilege_id: -20
|
||||
- privilege_id: 20
|
||||
label: read
|
||||
|
|
|
|||
|
|
@ -2,15 +2,15 @@
|
|||
"ccm_core.ccm_privileges":
|
||||
[
|
||||
{
|
||||
"privilege_id": -10,
|
||||
"privilege_id": 10,
|
||||
"label": "admin"
|
||||
},
|
||||
{
|
||||
"privilege_id": -20,
|
||||
"privilege_id": 20,
|
||||
"label": "read"
|
||||
},
|
||||
{
|
||||
"privilege_id": -30,
|
||||
"privilege_id": 30,
|
||||
"label": "write"
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
ccm_core.ccm_privileges:
|
||||
- privilege_id: -10
|
||||
- privilege_id: 10
|
||||
label: admin
|
||||
- privilege_id: -20
|
||||
- privilege_id: 20
|
||||
label: read
|
||||
- privilege_id: -30
|
||||
- privilege_id: 30
|
||||
label: write
|
||||
|
|
|
|||
|
|
@ -2,122 +2,122 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
},
|
||||
{
|
||||
"subject_id": -60
|
||||
"subject_id": 60
|
||||
},
|
||||
{
|
||||
"subject_id": -70
|
||||
"subject_id": 70
|
||||
},
|
||||
{
|
||||
"subject_id": -80
|
||||
"subject_id": 80
|
||||
},
|
||||
{
|
||||
"subject_id": -90
|
||||
"subject_id": 90
|
||||
},
|
||||
{
|
||||
"subject_id": -100
|
||||
"subject_id": 100
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "Site-wide Administrators",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"name": "info Administration",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "info Viewers",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "info Administration Author",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"name": "info Administration Editor",
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
},
|
||||
{
|
||||
"name": "info Administration Publisher",
|
||||
"subject_id": -60
|
||||
"subject_id": 60
|
||||
},
|
||||
{
|
||||
"name": "info Administration Manager",
|
||||
"subject_id": -70
|
||||
"subject_id": 70
|
||||
},
|
||||
{
|
||||
"name": "info Administration Trusted User",
|
||||
"subject_id": -80
|
||||
"subject_id": 80
|
||||
},
|
||||
{
|
||||
"name": "info Viewers Content Reader",
|
||||
"subject_id": -90
|
||||
"subject_id": 90
|
||||
},
|
||||
{
|
||||
"name": "info Administration Alert Recipient",
|
||||
"subject_id": -100
|
||||
"subject_id": 100
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_roles":
|
||||
[
|
||||
{
|
||||
"role_id": -10,
|
||||
"role_id": 10,
|
||||
"description": "Creates new content",
|
||||
"name": "Author",
|
||||
"implicit_group_id": -40,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 40,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -20,
|
||||
"role_id": 20,
|
||||
"description": "Reviews and approves the author's work",
|
||||
"name": "Editor",
|
||||
"implicit_group_id": -50,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 50,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -30,
|
||||
"role_id": 30,
|
||||
"description": "Deploys the content to the web site",
|
||||
"name": "Publisher",
|
||||
"implicit_group_id": -60,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 60,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -40,
|
||||
"role_id": 40,
|
||||
"description": "Manages the overall content section",
|
||||
"name": "Manager",
|
||||
"implicit_group_id": -70,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 70,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -60,
|
||||
"role_id": 60,
|
||||
"description": "Can view published pages within this section",
|
||||
"name": "Content Reader",
|
||||
"implicit_group_id": -90,
|
||||
"source_group_id": -30
|
||||
"implicit_group_id": 90,
|
||||
"source_group_id": 30
|
||||
},
|
||||
{
|
||||
"role_id": -70,
|
||||
"role_id": 70,
|
||||
"description": "Receive alerts regarding expiration of published content",
|
||||
"name": "Alert Recipient",
|
||||
"implicit_group_id": -100,
|
||||
"source_group_id": -30
|
||||
"implicit_group_id": 100,
|
||||
"source_group_id": 30
|
||||
}
|
||||
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,64 +1,64 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: -50
|
||||
- subject_id: -60
|
||||
- subject_id: -70
|
||||
- subject_id: -80
|
||||
- subject_id: -90
|
||||
- subject_id: -100
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
- subject_id: 50
|
||||
- subject_id: 60
|
||||
- subject_id: 70
|
||||
- subject_id: 80
|
||||
- subject_id: 90
|
||||
- subject_id: 100
|
||||
ccm_core.ccm_groups:
|
||||
- name: Site-wide Administrators
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- name: info Administration
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: info Viewers
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: info Administration Author
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
- name: info Administration Editor
|
||||
subject_id: -50
|
||||
subject_id: 50
|
||||
- name: info Administration Publisher
|
||||
subject_id: -60
|
||||
subject_id: 60
|
||||
- name: info Administration Manager
|
||||
subject_id: -70
|
||||
subject_id: 70
|
||||
- name: info Administration Trusted User
|
||||
subject_id: -80
|
||||
subject_id: 80
|
||||
- name: info Viewers Content Reader
|
||||
subject_id: -90
|
||||
subject_id: 90
|
||||
- name: info Administration Alert Recipient
|
||||
subject_id: -100
|
||||
subject_id: 100
|
||||
ccm_core.ccm_roles:
|
||||
- role_id: -10
|
||||
- role_id: 10
|
||||
description: Creates new content
|
||||
name: Author
|
||||
implicit_group_id: -40
|
||||
source_group_id: -20
|
||||
- role_id: -20
|
||||
implicit_group_id: 40
|
||||
source_group_id: 20
|
||||
- role_id: 20
|
||||
description: Reviews and approves the author's work
|
||||
name: Editor
|
||||
implicit_group_id: -50
|
||||
source_group_id: -20
|
||||
- role_id: -30
|
||||
implicit_group_id: 50
|
||||
source_group_id: 20
|
||||
- role_id: 30
|
||||
description: Deploys the content to the web site
|
||||
name: Publisher
|
||||
implicit_group_id: -60
|
||||
source_group_id: -20
|
||||
- role_id: -40
|
||||
implicit_group_id: 60
|
||||
source_group_id: 20
|
||||
- role_id: 40
|
||||
description: Manages the overall content section
|
||||
name: Manager
|
||||
implicit_group_id: -70
|
||||
source_group_id: -20
|
||||
- role_id: -60
|
||||
implicit_group_id: 70
|
||||
source_group_id: 20
|
||||
- role_id: 60
|
||||
description: Can view published pages within this section
|
||||
name: Content Reader
|
||||
implicit_group_id: -90
|
||||
source_group_id: -30
|
||||
- role_id: -70
|
||||
implicit_group_id: 90
|
||||
source_group_id: 30
|
||||
- role_id: 70
|
||||
description: Receive alerts regarding expiration of published content
|
||||
name: Alert Recipient
|
||||
implicit_group_id: -100
|
||||
source_group_id: -30
|
||||
implicit_group_id: 100
|
||||
source_group_id: 30
|
||||
|
|
|
|||
|
|
@ -2,129 +2,129 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
},
|
||||
{
|
||||
"subject_id": -60
|
||||
"subject_id": 60
|
||||
},
|
||||
{
|
||||
"subject_id": -70
|
||||
"subject_id": 70
|
||||
},
|
||||
{
|
||||
"subject_id": -80
|
||||
"subject_id": 80
|
||||
},
|
||||
{
|
||||
"subject_id": -90
|
||||
"subject_id": 90
|
||||
},
|
||||
{
|
||||
"subject_id": -100
|
||||
"subject_id": 100
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "Site-wide Administrators",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"name": "info Administration",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "info Viewers",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "info Administration Author",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"name": "info Administration Editor",
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
},
|
||||
{
|
||||
"name": "info Administration Publisher",
|
||||
"subject_id": -60
|
||||
"subject_id": 60
|
||||
},
|
||||
{
|
||||
"name": "info Administration Manager",
|
||||
"subject_id": -70
|
||||
"subject_id": 70
|
||||
},
|
||||
{
|
||||
"name": "info Administration Trusted User",
|
||||
"subject_id": -80
|
||||
"subject_id": 80
|
||||
},
|
||||
{
|
||||
"name": "info Viewers Content Reader",
|
||||
"subject_id": -90
|
||||
"subject_id": 90
|
||||
},
|
||||
{
|
||||
"name": "info Administration Alert Recipient",
|
||||
"subject_id": -100
|
||||
"subject_id": 100
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_roles":
|
||||
[
|
||||
{
|
||||
"role_id": -10,
|
||||
"role_id": 10,
|
||||
"description": "Creates new content",
|
||||
"name": "Author",
|
||||
"implicit_group_id": -40,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 40,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -20,
|
||||
"role_id": 20,
|
||||
"description": "Reviews and approves the author's work",
|
||||
"name": "Editor",
|
||||
"implicit_group_id": -50,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 50,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -30,
|
||||
"role_id": 30,
|
||||
"description": "Deploys the content to the web site",
|
||||
"name": "Publisher",
|
||||
"implicit_group_id": -60,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 60,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -40,
|
||||
"role_id": 40,
|
||||
"description": "Manages the overall content section",
|
||||
"name": "Manager",
|
||||
"implicit_group_id": -70,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 70,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -50,
|
||||
"role_id": 50,
|
||||
"description": "A trusted user is allowed to create and publish items without review",
|
||||
"name": "Trusted User",
|
||||
"implicit_group_id": -80,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 80,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -60,
|
||||
"role_id": 60,
|
||||
"description": "Can view published pages within this section",
|
||||
"name": "Reader",
|
||||
"implicit_group_id": -90,
|
||||
"source_group_id": -30
|
||||
"implicit_group_id": 90,
|
||||
"source_group_id": 30
|
||||
},
|
||||
{
|
||||
"role_id": -70,
|
||||
"role_id": 70,
|
||||
"description": "Receive alerts regarding expiration of published content",
|
||||
"name": "Alert Recipient",
|
||||
"implicit_group_id": -100,
|
||||
"source_group_id": -30
|
||||
"implicit_group_id": 100,
|
||||
"source_group_id": 30
|
||||
}
|
||||
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,69 +1,69 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: -50
|
||||
- subject_id: -60
|
||||
- subject_id: -70
|
||||
- subject_id: -80
|
||||
- subject_id: -90
|
||||
- subject_id: -100
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
- subject_id: 50
|
||||
- subject_id: 60
|
||||
- subject_id: 70
|
||||
- subject_id: 80
|
||||
- subject_id: 90
|
||||
- subject_id: 100
|
||||
ccm_core.ccm_groups:
|
||||
- name: Site-wide Administrators
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- name: info Administration
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: info Viewers
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: info Administration Author
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
- name: info Administration Editor
|
||||
subject_id: -50
|
||||
subject_id: 50
|
||||
- name: info Administration Publisher
|
||||
subject_id: -60
|
||||
subject_id: 60
|
||||
- name: info Administration Manager
|
||||
subject_id: -70
|
||||
subject_id: 70
|
||||
- name: info Administration Trusted User
|
||||
subject_id: -80
|
||||
subject_id: 80
|
||||
- name: info Viewers Content Reader
|
||||
subject_id: -90
|
||||
subject_id: 90
|
||||
- name: info Administration Alert Recipient
|
||||
subject_id: -100
|
||||
subject_id: 100
|
||||
ccm_core.ccm_roles:
|
||||
- role_id: -10
|
||||
- role_id: 10
|
||||
description: Creates new content
|
||||
name: Author
|
||||
implicit_group_id: -40
|
||||
source_group_id: -20
|
||||
- role_id: -20
|
||||
implicit_group_id: 40
|
||||
source_group_id: 20
|
||||
- role_id: 20
|
||||
description: Reviews and approves the author's work
|
||||
name: Editor
|
||||
implicit_group_id: -50
|
||||
source_group_id: -20
|
||||
- role_id: -30
|
||||
implicit_group_id: 50
|
||||
source_group_id: 20
|
||||
- role_id: 30
|
||||
description: Deploys the content to the web site
|
||||
name: Publisher
|
||||
implicit_group_id: -60
|
||||
source_group_id: -20
|
||||
- role_id: -40
|
||||
implicit_group_id: 60
|
||||
source_group_id: 20
|
||||
- role_id: 40
|
||||
description: Manages the overall content section
|
||||
name: Manager
|
||||
implicit_group_id: -70
|
||||
source_group_id: -20
|
||||
- role_id: -50
|
||||
implicit_group_id: 70
|
||||
source_group_id: 20
|
||||
- role_id: 50
|
||||
description: A trusted user is allowed to create and publish items without review
|
||||
name: Trusted User
|
||||
implicit_group_id: -80
|
||||
source_group_id: -20
|
||||
- role_id: -60
|
||||
implicit_group_id: 80
|
||||
source_group_id: 20
|
||||
- role_id: 60
|
||||
description: Can view published pages within this section
|
||||
name: Reader
|
||||
implicit_group_id: -90
|
||||
source_group_id: -30
|
||||
- role_id: -70
|
||||
implicit_group_id: 90
|
||||
source_group_id: 30
|
||||
- role_id: 70
|
||||
description: Receive alerts regarding expiration of published content
|
||||
name: Alert Recipient
|
||||
implicit_group_id: -100
|
||||
source_group_id: -30
|
||||
implicit_group_id: 100
|
||||
source_group_id: 30
|
||||
|
|
|
|||
|
|
@ -2,136 +2,136 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
},
|
||||
{
|
||||
"subject_id": -60
|
||||
"subject_id": 60
|
||||
},
|
||||
{
|
||||
"subject_id": -70
|
||||
"subject_id": 70
|
||||
},
|
||||
{
|
||||
"subject_id": -80
|
||||
"subject_id": 80
|
||||
},
|
||||
{
|
||||
"subject_id": -90
|
||||
"subject_id": 90
|
||||
},
|
||||
{
|
||||
"subject_id": -100
|
||||
"subject_id": 100
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "Site-wide Administrators",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"name": "info Administration",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "info Viewers",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "info Administration Author",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"name": "info Administration Editor",
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
},
|
||||
{
|
||||
"name": "info Administration Publisher",
|
||||
"subject_id": -60
|
||||
"subject_id": 60
|
||||
},
|
||||
{
|
||||
"name": "info Administration Manager",
|
||||
"subject_id": -70
|
||||
"subject_id": 70
|
||||
},
|
||||
{
|
||||
"name": "info Administration Trusted User",
|
||||
"subject_id": -80
|
||||
"subject_id": 80
|
||||
},
|
||||
{
|
||||
"name": "info Viewers Content Reader",
|
||||
"subject_id": -90
|
||||
"subject_id": 90
|
||||
},
|
||||
{
|
||||
"name": "info Administration Alert Recipient",
|
||||
"subject_id": -100
|
||||
"subject_id": 100
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_roles":
|
||||
[
|
||||
{
|
||||
"role_id": -10,
|
||||
"role_id": 10,
|
||||
"description": "Creates new content",
|
||||
"name": "Author",
|
||||
"implicit_group_id": -40,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 40,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -20,
|
||||
"role_id": 20,
|
||||
"description": "Reviews and approves the author's work",
|
||||
"name": "Editor",
|
||||
"implicit_group_id": -50,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 50,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -30,
|
||||
"role_id": 30,
|
||||
"description": "Deploys the content to the web site",
|
||||
"name": "Publisher",
|
||||
"implicit_group_id": -60,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 60,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -40,
|
||||
"role_id": 40,
|
||||
"description": "Manages the overall content section",
|
||||
"name": "Manager",
|
||||
"implicit_group_id": -70,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 70,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -50,
|
||||
"role_id": 50,
|
||||
"description": "A trusted user is allowed to create and publish items without review",
|
||||
"name": "Trusted User",
|
||||
"implicit_group_id": -80,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 80,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -60,
|
||||
"role_id": 60,
|
||||
"description": "Can view published pages within this section",
|
||||
"name": "Content Reader",
|
||||
"implicit_group_id": -90,
|
||||
"source_group_id": -30
|
||||
"implicit_group_id": 90,
|
||||
"source_group_id": 30
|
||||
},
|
||||
{
|
||||
"role_id": -70,
|
||||
"role_id": 70,
|
||||
"description": "Receive alerts regarding expiration of published content",
|
||||
"name": "Alert Recipient",
|
||||
"implicit_group_id": -100,
|
||||
"source_group_id": -30
|
||||
"implicit_group_id": 100,
|
||||
"source_group_id": 30
|
||||
},
|
||||
{
|
||||
"role_id": -80,
|
||||
"role_id": 80,
|
||||
"description": "New role for testing",
|
||||
"name": "Test",
|
||||
"implicit_group_id": -20,
|
||||
"source_group_id": -90
|
||||
"implicit_group_id": 20,
|
||||
"source_group_id": 90
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,74 +1,74 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: -50
|
||||
- subject_id: -60
|
||||
- subject_id: -70
|
||||
- subject_id: -80
|
||||
- subject_id: -90
|
||||
- subject_id: -100
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
- subject_id: 50
|
||||
- subject_id: 60
|
||||
- subject_id: 70
|
||||
- subject_id: 80
|
||||
- subject_id: 90
|
||||
- subject_id: 100
|
||||
ccm_core.ccm_groups:
|
||||
- name: Site-wide Administrators
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- name: info Administration
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: info Viewers
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: info Administration Author
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
- name: info Administration Editor
|
||||
subject_id: -50
|
||||
subject_id: 50
|
||||
- name: info Administration Publisher
|
||||
subject_id: -60
|
||||
subject_id: 60
|
||||
- name: info Administration Manager
|
||||
subject_id: -70
|
||||
subject_id: 70
|
||||
- name: info Administration Trusted User
|
||||
subject_id: -80
|
||||
subject_id: 80
|
||||
- name: info Viewers Content Reader
|
||||
subject_id: -90
|
||||
subject_id: 90
|
||||
- name: info Administration Alert Recipient
|
||||
subject_id: -100
|
||||
subject_id: 100
|
||||
ccm_core.ccm_roles:
|
||||
- role_id: -10
|
||||
- role_id: 10
|
||||
description: Creates new content
|
||||
name: Author
|
||||
implicit_group_id: -40
|
||||
source_group_id: -20
|
||||
- role_id: -20
|
||||
implicit_group_id: 40
|
||||
source_group_id: 20
|
||||
- role_id: 20
|
||||
description: Reviews and approves the author's work
|
||||
name: Editor
|
||||
implicit_group_id: -50
|
||||
source_group_id: -20
|
||||
- role_id: -30
|
||||
implicit_group_id: 50
|
||||
source_group_id: 20
|
||||
- role_id: 30
|
||||
description: Deploys the content to the web site
|
||||
name: Publisher
|
||||
implicit_group_id: -60
|
||||
source_group_id: -20
|
||||
- role_id: -40
|
||||
implicit_group_id: 60
|
||||
source_group_id: 20
|
||||
- role_id: 40
|
||||
description: Manages the overall content section
|
||||
name: Manager
|
||||
implicit_group_id: -70
|
||||
source_group_id: -20
|
||||
- role_id: -50
|
||||
implicit_group_id: 70
|
||||
source_group_id: 20
|
||||
- role_id: 50
|
||||
description: A trusted user is allowed to create and publish items without review
|
||||
name: Trusted User
|
||||
implicit_group_id: -80
|
||||
source_group_id: -20
|
||||
- role_id: -60
|
||||
implicit_group_id: 80
|
||||
source_group_id: 20
|
||||
- role_id: 60
|
||||
description: Can view published pages within this section
|
||||
name: Content Reader
|
||||
implicit_group_id: -90
|
||||
source_group_id: -30
|
||||
- role_id: -70
|
||||
implicit_group_id: 90
|
||||
source_group_id: 30
|
||||
- role_id: 70
|
||||
description: Receive alerts regarding expiration of published content
|
||||
name: Alert Recipient
|
||||
implicit_group_id: -100
|
||||
source_group_id: -30
|
||||
- role_id: -80
|
||||
implicit_group_id: 100
|
||||
source_group_id: 30
|
||||
- role_id: 80
|
||||
description: New role for testing
|
||||
name: Test
|
||||
implicit_group_id: -20
|
||||
source_group_id: -90
|
||||
implicit_group_id: 20
|
||||
source_group_id: 90
|
||||
|
|
|
|||
|
|
@ -2,129 +2,129 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
},
|
||||
{
|
||||
"subject_id": -60
|
||||
"subject_id": 60
|
||||
},
|
||||
{
|
||||
"subject_id": -70
|
||||
"subject_id": 70
|
||||
},
|
||||
{
|
||||
"subject_id": -80
|
||||
"subject_id": 80
|
||||
},
|
||||
{
|
||||
"subject_id": -90
|
||||
"subject_id": 90
|
||||
},
|
||||
{
|
||||
"subject_id": -100
|
||||
"subject_id": 100
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_groups":
|
||||
[
|
||||
{
|
||||
"name": "Site-wide Administrators",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"name": "info Administration",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"name": "info Viewers",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"name": "info Administration Author",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
},
|
||||
{
|
||||
"name": "info Administration Editor",
|
||||
"subject_id": -50
|
||||
"subject_id": 50
|
||||
},
|
||||
{
|
||||
"name": "info Administration Publisher",
|
||||
"subject_id": -60
|
||||
"subject_id": 60
|
||||
},
|
||||
{
|
||||
"name": "info Administration Manager",
|
||||
"subject_id": -70
|
||||
"subject_id": 70
|
||||
},
|
||||
{
|
||||
"name": "info Administration Trusted User",
|
||||
"subject_id": -80
|
||||
"subject_id": 80
|
||||
},
|
||||
{
|
||||
"name": "info Viewers Content Reader",
|
||||
"subject_id": -90
|
||||
"subject_id": 90
|
||||
},
|
||||
{
|
||||
"name": "info Administration Alert Recipient",
|
||||
"subject_id": -100
|
||||
"subject_id": 100
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_roles":
|
||||
[
|
||||
{
|
||||
"role_id": -10,
|
||||
"role_id": 10,
|
||||
"description": "Creates new content",
|
||||
"name": "Author",
|
||||
"implicit_group_id": -40,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 40,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -20,
|
||||
"role_id": 20,
|
||||
"description": "Reviews and approves the author's work",
|
||||
"name": "Editor",
|
||||
"implicit_group_id": -50,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 50,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -30,
|
||||
"role_id": 30,
|
||||
"description": "Deploys the content to the web site",
|
||||
"name": "Publisher",
|
||||
"implicit_group_id": -60,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 60,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -40,
|
||||
"role_id": 40,
|
||||
"description": "Manages the overall content section",
|
||||
"name": "Manager",
|
||||
"implicit_group_id": -70,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 70,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -50,
|
||||
"role_id": 50,
|
||||
"description": "A trusted user is allowed to create and publish items without review",
|
||||
"name": "Trusted User",
|
||||
"implicit_group_id": -80,
|
||||
"source_group_id": -20
|
||||
"implicit_group_id": 80,
|
||||
"source_group_id": 20
|
||||
},
|
||||
{
|
||||
"role_id": -60,
|
||||
"role_id": 60,
|
||||
"description": "Can view published pages within this section",
|
||||
"name": "Content Reader",
|
||||
"implicit_group_id": -90,
|
||||
"source_group_id": -30
|
||||
"implicit_group_id": 90,
|
||||
"source_group_id": 30
|
||||
},
|
||||
{
|
||||
"role_id": -70,
|
||||
"role_id": 70,
|
||||
"description": "Receive alerts regarding expiration of published content",
|
||||
"name": "Alert Recipient",
|
||||
"implicit_group_id": -100,
|
||||
"source_group_id": -30
|
||||
"implicit_group_id": 100,
|
||||
"source_group_id": 30
|
||||
}
|
||||
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,69 +1,69 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: -50
|
||||
- subject_id: -60
|
||||
- subject_id: -70
|
||||
- subject_id: -80
|
||||
- subject_id: -90
|
||||
- subject_id: -100
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
- subject_id: 50
|
||||
- subject_id: 60
|
||||
- subject_id: 70
|
||||
- subject_id: 80
|
||||
- subject_id: 90
|
||||
- subject_id: 100
|
||||
ccm_core.ccm_groups:
|
||||
- name: Site-wide Administrators
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- name: info Administration
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- name: info Viewers
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- name: info Administration Author
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
- name: info Administration Editor
|
||||
subject_id: -50
|
||||
subject_id: 50
|
||||
- name: info Administration Publisher
|
||||
subject_id: -60
|
||||
subject_id: 60
|
||||
- name: info Administration Manager
|
||||
subject_id: -70
|
||||
subject_id: 70
|
||||
- name: info Administration Trusted User
|
||||
subject_id: -80
|
||||
subject_id: 80
|
||||
- name: info Viewers Content Reader
|
||||
subject_id: -90
|
||||
subject_id: 90
|
||||
- name: info Administration Alert Recipient
|
||||
subject_id: -100
|
||||
subject_id: 100
|
||||
ccm_core.ccm_roles:
|
||||
- role_id: -10
|
||||
- role_id: 10
|
||||
description: Creates new content
|
||||
name: Author
|
||||
implicit_group_id: -40
|
||||
source_group_id: -20
|
||||
- role_id: -20
|
||||
implicit_group_id: 40
|
||||
source_group_id: 20
|
||||
- role_id: 20
|
||||
description: Reviews and approves the author's work
|
||||
name: Editor
|
||||
implicit_group_id: -50
|
||||
source_group_id: -20
|
||||
- role_id: -30
|
||||
implicit_group_id: 50
|
||||
source_group_id: 20
|
||||
- role_id: 30
|
||||
description: Deploys the content to the web site
|
||||
name: Publisher
|
||||
implicit_group_id: -60
|
||||
source_group_id: -20
|
||||
- role_id: -40
|
||||
implicit_group_id: 60
|
||||
source_group_id: 20
|
||||
- role_id: 40
|
||||
description: Manages the overall content section
|
||||
name: Manager
|
||||
implicit_group_id: -70
|
||||
source_group_id: -20
|
||||
- role_id: -50
|
||||
implicit_group_id: 70
|
||||
source_group_id: 20
|
||||
- role_id: 50
|
||||
description: A trusted user is allowed to create and publish items without review
|
||||
name: Trusted User
|
||||
implicit_group_id: -80
|
||||
source_group_id: -20
|
||||
- role_id: -60
|
||||
implicit_group_id: 80
|
||||
source_group_id: 20
|
||||
- role_id: 60
|
||||
description: Can view published pages within this section
|
||||
name: Content Reader
|
||||
implicit_group_id: -90
|
||||
source_group_id: -30
|
||||
- role_id: -70
|
||||
implicit_group_id: 90
|
||||
source_group_id: 30
|
||||
- role_id: 70
|
||||
description: Receive alerts regarding expiration of published content
|
||||
name: Alert Recipient
|
||||
implicit_group_id: -100
|
||||
source_group_id: -30
|
||||
implicit_group_id: 100
|
||||
source_group_id: 30
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -16,13 +16,13 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: 10
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -10,9 +10,9 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
|
|
|
|||
|
|
@ -2,10 +2,10 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -19,7 +19,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "axg8ira8fa",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -30,19 +30,19 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "axg8ira8fa",
|
||||
"screen_name": "joe",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -30,
|
||||
"user_id": 30,
|
||||
"email_address": "joe.public@example.com",
|
||||
"bouncing": true,
|
||||
"verified": false
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -30
|
||||
- subject_id: 10
|
||||
- subject_id: 30
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: MD5
|
||||
|
|
@ -12,7 +12,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: axg8ira8fa
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Public
|
||||
|
|
@ -22,13 +22,13 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: axg8ira8fa
|
||||
screen_name: joe
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -30
|
||||
- user_id: 30
|
||||
email_address: joe.public@example.com
|
||||
bouncing: true
|
||||
verified: false
|
||||
|
|
|
|||
|
|
@ -2,13 +2,13 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fafjiaddfja0a",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fjiajhigafgapoa",
|
||||
"screen_name": "mmuster",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -45,31 +45,31 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "axg8ira8fa",
|
||||
"screen_name": "joe",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "jd@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -20,
|
||||
"user_id": 20,
|
||||
"email_address": "max.mustermann@example.org",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -20,
|
||||
"user_id": 20,
|
||||
"email_address": "mm@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -30,
|
||||
"user_id": 30,
|
||||
"email_address": "joe.public@example.com",
|
||||
"bouncing": true,
|
||||
"verified": false
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -14,7 +14,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fafjiaddfja0a
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Mustermann
|
||||
|
|
@ -24,7 +24,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fjiajhigafgapoa
|
||||
screen_name: mmuster
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Public
|
||||
|
|
@ -34,21 +34,21 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: axg8ira8fa
|
||||
screen_name: joe
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: jd@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -20
|
||||
- user_id: 20
|
||||
email_address: max.mustermann@example.org
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -20
|
||||
- user_id: 20
|
||||
email_address: mm@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -30
|
||||
- user_id: 30
|
||||
email_address: joe.public@example.com
|
||||
bouncing: true
|
||||
verified: false
|
||||
|
|
|
|||
|
|
@ -2,16 +2,16 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "axg8ira8fa",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -36,7 +36,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fjiajhigafgapoa",
|
||||
"screen_name": "mmuster",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -47,7 +47,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "axg8ira8fa",
|
||||
"screen_name": "joe",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -60,37 +60,37 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "maifgaoapafga9",
|
||||
"screen_name": "jane",
|
||||
"subject_id": -40
|
||||
"subject_id": 40
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -20,
|
||||
"user_id": 20,
|
||||
"email_address": "max.mustermann@example.org",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -20,
|
||||
"user_id": 20,
|
||||
"email_address": "mm@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -30,
|
||||
"user_id": 30,
|
||||
"email_address": "joe.public@example.com",
|
||||
"bouncing": true,
|
||||
"verified": false
|
||||
},
|
||||
{
|
||||
"user_id": -40,
|
||||
"user_id": 40,
|
||||
"email_address": "jane.doe@example.org",
|
||||
"bouncing": false,
|
||||
"verified": false
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: -40
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
- subject_id: 40
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: MD5
|
||||
|
|
@ -14,7 +14,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: axg8ira8fa
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Mustermann
|
||||
|
|
@ -24,7 +24,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fjiajhigafgapoa
|
||||
screen_name: mmuster
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Public
|
||||
|
|
@ -34,7 +34,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: axg8ira8fa
|
||||
screen_name: joe
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Doe
|
||||
|
|
@ -46,25 +46,25 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: maifgaoapafga9
|
||||
screen_name: jane
|
||||
subject_id: -40
|
||||
subject_id: 40
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -20
|
||||
- user_id: 20
|
||||
email_address: max.mustermann@example.org
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -20
|
||||
- user_id: 20
|
||||
email_address: mm@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -30
|
||||
- user_id: 30
|
||||
email_address: joe.public@example.com
|
||||
bouncing: true
|
||||
verified: false
|
||||
- user_id: -40
|
||||
- user_id: 40
|
||||
email_address: jane.doe@example.org
|
||||
bouncing: false
|
||||
verified: false
|
||||
|
|
|
|||
|
|
@ -2,13 +2,13 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "axg8ira8fa",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fjiajhigafgapoa",
|
||||
"screen_name": "mmuster",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -44,31 +44,31 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "axg8ira8fa",
|
||||
"screen_name": "joe",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -20,
|
||||
"user_id": 20,
|
||||
"email_address": "max.mustermann@example.org",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -20,
|
||||
"user_id": 20,
|
||||
"email_address": "mm@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -30,
|
||||
"user_id": 30,
|
||||
"email_address": "max.mustermann@example.org",
|
||||
"bouncing": true,
|
||||
"verified": false
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: MD5
|
||||
|
|
@ -12,7 +12,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: axg8ira8fa
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Mustermann
|
||||
|
|
@ -21,7 +21,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fjiajhigafgapoa
|
||||
screen_name: mmuster
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Public
|
||||
|
|
@ -30,21 +30,21 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: axg8ira8fa
|
||||
screen_name: joe
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -20
|
||||
- user_id: 20
|
||||
email_address: max.mustermann@example.org
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -20
|
||||
- user_id: 20
|
||||
email_address: mm@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -30
|
||||
- user_id: 30
|
||||
email_address: max.mustermann@example.org
|
||||
bouncing: true
|
||||
verified: false
|
||||
|
|
|
|||
|
|
@ -2,13 +2,13 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "axg8ira8fa",
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "fjiajhigafgapoa",
|
||||
"screen_name": "mmuster",
|
||||
"subject_id": -20
|
||||
"subject_id": 20
|
||||
},
|
||||
{
|
||||
"banned": false,
|
||||
|
|
@ -44,31 +44,31 @@
|
|||
"password_reset_required": false,
|
||||
"salt": "axg8ira8fa",
|
||||
"screen_name": "joe",
|
||||
"subject_id": -30
|
||||
"subject_id": 30
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "john.doe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -20,
|
||||
"user_id": 20,
|
||||
"email_address": "max.mustermann@example.org",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -20,
|
||||
"user_id": 20,
|
||||
"email_address": "mm@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
},
|
||||
{
|
||||
"user_id": -30,
|
||||
"user_id": 30,
|
||||
"email_address": "joe.public@example.com",
|
||||
"bouncing": true,
|
||||
"verified": false
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: -20
|
||||
- subject_id: -30
|
||||
- subject_id: 10
|
||||
- subject_id: 20
|
||||
- subject_id: 30
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: MD5
|
||||
|
|
@ -13,7 +13,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: axg8ira8fa
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Mustermann
|
||||
|
|
@ -23,7 +23,7 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: fjiajhigafgapoa
|
||||
screen_name: mmuster
|
||||
subject_id: -20
|
||||
subject_id: 20
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
family_name: Public
|
||||
|
|
@ -33,21 +33,21 @@ ccm_core.ccm_users:
|
|||
password_reset_required: false
|
||||
salt: axg8ira8fa
|
||||
screen_name: joe
|
||||
subject_id: -30
|
||||
subject_id: 30
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: john.doe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -20
|
||||
- user_id: 20
|
||||
email_address: max.mustermann@example.org
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -20
|
||||
- user_id: 20
|
||||
email_address: mm@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
- user_id: -30
|
||||
- user_id: 30
|
||||
email_address: joe.public@example.com
|
||||
bouncing: true
|
||||
verified: false
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"ccm_core.subjects":
|
||||
[
|
||||
{
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
}
|
||||
],
|
||||
"ccm_core.ccm_users":
|
||||
|
|
@ -16,13 +16,13 @@
|
|||
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
|
||||
"password_reset_required": false,
|
||||
"screen_name": "jdoe",
|
||||
"subject_id": -10
|
||||
"subject_id": 10
|
||||
}
|
||||
],
|
||||
"ccm_core.user_email_addresses":
|
||||
[
|
||||
{
|
||||
"user_id": -10,
|
||||
"user_id": 10,
|
||||
"email_address": "jdoe@example.com",
|
||||
"bouncing": false,
|
||||
"verified": true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
ccm_core.subjects:
|
||||
- subject_id: -10
|
||||
- subject_id: 10
|
||||
ccm_core.ccm_users:
|
||||
- banned: false
|
||||
hash_algorithm: SHA-512
|
||||
|
|
@ -10,9 +10,9 @@ ccm_core.ccm_users:
|
|||
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
|
||||
password_reset_required: false
|
||||
screen_name: jdoe
|
||||
subject_id: -10
|
||||
subject_id: 10
|
||||
ccm_core.user_email_addresses:
|
||||
- user_id: -10
|
||||
- user_id: 10
|
||||
email_address: jdoe@example.com
|
||||
bouncing: false
|
||||
verified: true
|
||||
|
|
|
|||
|
|
@ -1,21 +1,21 @@
|
|||
ccm_core.parties:
|
||||
# Group 1
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
uuid: 7200c286-5045-4305-8f40-86cc078b5943
|
||||
name: group-1
|
||||
# Group 2
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
uuid: ebdc9a12-8f4e-48e8-92ec-900c65189895
|
||||
name: group-2
|
||||
# Imported group
|
||||
- party_id: -100
|
||||
- party_id: 100
|
||||
uuid: 696592cd-db19-4aca-bb14-06490cfde243
|
||||
name: department-23
|
||||
ccm_core.groups:
|
||||
# Group 1
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
# Group 2
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
# Imported group
|
||||
- party_id: -100
|
||||
- party_id: 100
|
||||
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
ccm_core.parties:
|
||||
# Group 1
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
uuid: 7200c286-5045-4305-8f40-86cc078b5943
|
||||
name: group-1
|
||||
# Group 2
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
uuid: ebdc9a12-8f4e-48e8-92ec-900c65189895
|
||||
name: group-2
|
||||
ccm_core.groups:
|
||||
# Group 1
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
# Group 2
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
|
|
|
|||
|
|
@ -1,22 +1,22 @@
|
|||
ccm_core.parties:
|
||||
# John Doe
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: jdoe
|
||||
# Max Muster
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: mmuster
|
||||
# Joe Public
|
||||
- party_id: -30
|
||||
- party_id: 30
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: joe
|
||||
# Group 1
|
||||
- party_id: -100
|
||||
- party_id: 100
|
||||
uuid: 7200c286-5045-4305-8f40-86cc078b5943
|
||||
name: group-1
|
||||
# Group 2
|
||||
- party_id: -200
|
||||
- party_id: 200
|
||||
uuid: ebdc9a12-8f4e-48e8-92ec-900c65189895
|
||||
name: group-2
|
||||
ccm_core.users:
|
||||
|
|
@ -26,7 +26,7 @@ ccm_core.users:
|
|||
email_address: john.doe@example.com
|
||||
family_name: Doe
|
||||
given_name: John
|
||||
party_id: -10
|
||||
party_id: 10
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
|
||||
password_reset_required: false
|
||||
|
|
@ -37,7 +37,7 @@ ccm_core.users:
|
|||
email_address: max.mustermann@example.org
|
||||
family_name: Mustermann
|
||||
given_name: Max
|
||||
party_id: -20
|
||||
party_id: 20
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
|
||||
password_reset_required: false
|
||||
|
|
@ -48,23 +48,23 @@ ccm_core.users:
|
|||
email_address: joe.public@example.com
|
||||
family_name: Public
|
||||
given_name: Joe
|
||||
party_id: -30
|
||||
party_id: 30
|
||||
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
|
||||
password_reset_required: false
|
||||
verified: true
|
||||
ccm_core.groups:
|
||||
# Group 1
|
||||
- party_id: -100
|
||||
- party_id: 100
|
||||
# Group 2
|
||||
- party_id: -200
|
||||
- party_id: 200
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -1000
|
||||
- membership_id: 1000
|
||||
uuid: b32bd614-00b7-4f1e-b1a3-4fc53f230082
|
||||
group_id: -200
|
||||
member_id: -30
|
||||
- membership_id: -2000
|
||||
group_id: 200
|
||||
member_id: 30
|
||||
- membership_id: 2000
|
||||
uuid: f8ac4073-447e-4bd6-ac96-3bf92bdc8ce7
|
||||
group_id: -100
|
||||
member_id: -10
|
||||
group_id: 100
|
||||
member_id: 10
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,22 +1,22 @@
|
|||
ccm_core.parties:
|
||||
# John Doe
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: jdoe
|
||||
# Max Muster
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: mmuster
|
||||
# Joe Public
|
||||
- party_id: -30
|
||||
- party_id: 30
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: joe
|
||||
# Group 1
|
||||
- party_id: -100
|
||||
- party_id: 100
|
||||
uuid: 7200c286-5045-4305-8f40-86cc078b5943
|
||||
name: group-1
|
||||
# Group 2
|
||||
- party_id: -200
|
||||
- party_id: 200
|
||||
uuid: ebdc9a12-8f4e-48e8-92ec-900c65189895
|
||||
name: group-2
|
||||
ccm_core.users:
|
||||
|
|
@ -26,7 +26,7 @@ ccm_core.users:
|
|||
email_address: john.doe@example.com
|
||||
family_name: Doe
|
||||
given_name: John
|
||||
party_id: -10
|
||||
party_id: 10
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
|
||||
password_reset_required: false
|
||||
|
|
@ -37,7 +37,7 @@ ccm_core.users:
|
|||
email_address: max.mustermann@example.org
|
||||
family_name: Mustermann
|
||||
given_name: Max
|
||||
party_id: -20
|
||||
party_id: 20
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
|
||||
password_reset_required: false
|
||||
|
|
@ -48,18 +48,18 @@ ccm_core.users:
|
|||
email_address: joe.public@example.com
|
||||
family_name: Public
|
||||
given_name: Joe
|
||||
party_id: -30
|
||||
party_id: 30
|
||||
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
|
||||
password_reset_required: false
|
||||
verified: true
|
||||
ccm_core.groups:
|
||||
# Group 1
|
||||
- party_id: -100
|
||||
- party_id: 100
|
||||
# Group 2
|
||||
- party_id: -200
|
||||
- party_id: 200
|
||||
ccm_core.group_memberships:
|
||||
- membership_id: -1000
|
||||
- membership_id: 1000
|
||||
uuid: b32bd614-00b7-4f1e-b1a3-4fc53f230082
|
||||
group_id: -200
|
||||
member_id: -30
|
||||
group_id: 200
|
||||
member_id: 30
|
||||
|
||||
|
|
|
|||
|
|
@ -1,18 +1,18 @@
|
|||
ccm_core.parties:
|
||||
# John Doe
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: jdoe
|
||||
# Max Muster
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: mmuster
|
||||
# Joe Public
|
||||
- party_id: -30
|
||||
- party_id: 30
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: joe
|
||||
# Jane Doe
|
||||
- party_id: -40
|
||||
- party_id: 40
|
||||
uuid: 7cb9aba4-8071-4f27-af19-096e1473d050
|
||||
name: janedoe
|
||||
ccm_core.users:
|
||||
|
|
@ -22,7 +22,7 @@ ccm_core.users:
|
|||
email_address: john.doe@example.com
|
||||
family_name: Doe
|
||||
given_name: John
|
||||
party_id: -10
|
||||
party_id: 10
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
|
||||
password_reset_required: false
|
||||
|
|
@ -33,7 +33,7 @@ ccm_core.users:
|
|||
email_address: max.mustermann@example.org
|
||||
family_name: Mustermann
|
||||
given_name: Max
|
||||
party_id: -20
|
||||
party_id: 20
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
|
||||
password_reset_required: false
|
||||
|
|
@ -44,7 +44,7 @@ ccm_core.users:
|
|||
email_address: joe.public@example.com
|
||||
family_name: Public
|
||||
given_name: Joe
|
||||
party_id: -30
|
||||
party_id: 30
|
||||
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
|
||||
password_reset_required: false
|
||||
verified: true
|
||||
|
|
@ -54,7 +54,7 @@ ccm_core.users:
|
|||
email_address: jane.doe@libreccm.example
|
||||
family_name: Doe
|
||||
given_name: Jane
|
||||
party_id: -40
|
||||
party_id: 40
|
||||
password: ofafodafa
|
||||
password_reset_required: false
|
||||
verified: true
|
||||
|
|
|
|||
|
|
@ -1,14 +1,14 @@
|
|||
ccm_core.parties:
|
||||
# John Doe
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: jdoe
|
||||
# Max Muster
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: mmuster
|
||||
# Joe Public
|
||||
- party_id: -30
|
||||
- party_id: 30
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: joe
|
||||
ccm_core.users:
|
||||
|
|
@ -18,7 +18,7 @@ ccm_core.users:
|
|||
email_address: john.doe@example.com
|
||||
family_name: Doe
|
||||
given_name: John
|
||||
party_id: -10
|
||||
party_id: 10
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
|
||||
password_reset_required: false
|
||||
|
|
@ -29,7 +29,7 @@ ccm_core.users:
|
|||
email_address: max.mustermann@example.org
|
||||
family_name: Mustermann
|
||||
given_name: Max
|
||||
party_id: -20
|
||||
party_id: 20
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
|
||||
password_reset_required: false
|
||||
|
|
@ -40,7 +40,7 @@ ccm_core.users:
|
|||
email_address: joe.public@example.com
|
||||
family_name: Public
|
||||
given_name: Joe
|
||||
party_id: -30
|
||||
party_id: 30
|
||||
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
|
||||
password_reset_required: false
|
||||
verified: true
|
||||
|
|
|
|||
|
|
@ -1,23 +1,23 @@
|
|||
ccm_core.settings:
|
||||
- setting_id: -100
|
||||
- setting_id: 100
|
||||
configuration_class: org.libreccm.configuration.ExampleConfiguration
|
||||
name: enabled
|
||||
setting_value_boolean: true
|
||||
dtype: BooleanSetting
|
||||
- setting_id: -110
|
||||
- setting_id: 110
|
||||
configuration_class: org.libreccm.configuration.ExampleConfiguration
|
||||
name: itemsPerPage
|
||||
setting_value_long: 100
|
||||
dtype: LongSetting
|
||||
- setting_id: -120
|
||||
- setting_id: 120
|
||||
configuration_class: org.libreccm.configuration.ExampleConfiguration
|
||||
name: title
|
||||
dtype: LocalizedStringSetting
|
||||
ccm_core.settings_l10n_str_values:
|
||||
- entry_id: -120
|
||||
- entry_id: 120
|
||||
locale: de
|
||||
localized_value: Versuch
|
||||
- entry_id: -120
|
||||
- entry_id: 120
|
||||
locale: en
|
||||
localized_value: Test
|
||||
|
||||
|
|
|
|||
|
|
@ -1,26 +1,26 @@
|
|||
ccm_core.parties:
|
||||
# John Doe
|
||||
- party_id: -10
|
||||
- party_id": 10
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: jdoe
|
||||
# Max Muster
|
||||
- party_id: -20
|
||||
- party_id": 20
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: mmuster
|
||||
# Joe Public
|
||||
- party_id: -30
|
||||
- party_id": 30
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: joe
|
||||
# admins
|
||||
- party_id: -40
|
||||
- party_id": 40
|
||||
uuid: 0fc446b7-a242-4407-9d04-b8ccaaa9dee5
|
||||
name: admins
|
||||
# users
|
||||
- party_id: -50
|
||||
- party_id": 50
|
||||
uuid: 2082d7fc-8268-4195-8cbe-eb826b1afaeb
|
||||
name: users
|
||||
# editors
|
||||
- party_id: -60
|
||||
- party_id": 60
|
||||
uuid: 176bfecc-c0fa-4e76-8935-5d6d0ec60e8c
|
||||
name: editors
|
||||
ccm_core.users:
|
||||
|
|
@ -30,7 +30,7 @@ ccm_core.users:
|
|||
email_address: john.doe@example.com
|
||||
family_name: Doe
|
||||
given_name: John
|
||||
party_id: -10
|
||||
party_id": 10
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
|
||||
password_reset_required: false
|
||||
|
|
@ -41,7 +41,7 @@ ccm_core.users:
|
|||
email_address: max.mustermann@example.org
|
||||
family_name: Mustermann
|
||||
given_name: Max
|
||||
party_id: -20
|
||||
party_id": 20
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
|
||||
password_reset_required: false
|
||||
|
|
@ -52,45 +52,45 @@ ccm_core.users:
|
|||
email_address: joe.public@example.com
|
||||
family_name: Public
|
||||
given_name: Joe
|
||||
party_id: -30
|
||||
party_id": 30
|
||||
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
|
||||
password_reset_required: false
|
||||
verified: true
|
||||
ccm_core.groups:
|
||||
# admins
|
||||
- party_id: -40
|
||||
- party_id": 40
|
||||
# users
|
||||
- party_id: -50
|
||||
- party_id": 50
|
||||
# editors
|
||||
- party_id: -60
|
||||
- party_id": 60
|
||||
ccm_core.group_memberships:
|
||||
# admins <-> jdoe
|
||||
- membership_id: -100
|
||||
- membership_id": 100
|
||||
uuid: 1f9dad0a-c51a-49e7-8720-c3c669cde67e
|
||||
group_id: -40
|
||||
member_id: -10
|
||||
group_id": 40
|
||||
member_id": 10
|
||||
# users <-> mmuster
|
||||
- membership_id: -200
|
||||
- membership_id": 200
|
||||
uuid: 3837b1c2-b4e4-44b9-a92f-2330d76b51df
|
||||
group_id: -50
|
||||
member_id: -20
|
||||
group_id": 50
|
||||
member_id": 20
|
||||
# users <-> joe
|
||||
- membership_id: -300
|
||||
- membership_id": 300
|
||||
uuid: cf8ffbc6-96d3-4e23-9503-4b396ea112aa
|
||||
group_id: -50
|
||||
member_id: -30
|
||||
group_id": 50
|
||||
member_id": 30
|
||||
# editors <-> joe
|
||||
- membership_id: -400
|
||||
- membership_id": 400
|
||||
uuid: 610ad227-cc55-4a8f-b532-3a5204f9d2dd
|
||||
group_id: -60
|
||||
member_id: -30
|
||||
group_id": 60
|
||||
member_id": 30
|
||||
# admins <-> mmuster
|
||||
- membership_id: -500
|
||||
- membership_id": 500
|
||||
uuid: 555657c8-e8ce-41e1-a327-f853901c8813
|
||||
group_id: -40
|
||||
member_id: -20
|
||||
group_id": 40
|
||||
member_id": 20
|
||||
# editors <-> jdoe
|
||||
- membership_id: -600
|
||||
- membership_id": 600
|
||||
uuid: ed78b175-3ff3-4f34-8a5f-829e2113c593
|
||||
group_id: -60
|
||||
member_id: -10
|
||||
group_id": 60
|
||||
member_id": 10
|
||||
|
|
@ -1,26 +1,26 @@
|
|||
ccm_core.parties:
|
||||
# John Doe
|
||||
- party_id: -10
|
||||
- party_id": 10
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: jdoe
|
||||
# Max Muster
|
||||
- party_id: -20
|
||||
- party_id": 20
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: mmuster
|
||||
# Joe Public
|
||||
- party_id: -30
|
||||
- party_id": 30
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: joe
|
||||
# admins
|
||||
- party_id: -40
|
||||
- party_id": 40
|
||||
uuid: 0fc446b7-a242-4407-9d04-b8ccaaa9dee5
|
||||
name: admins
|
||||
# users
|
||||
- party_id: -50
|
||||
- party_id": 50
|
||||
uuid: 2082d7fc-8268-4195-8cbe-eb826b1afaeb
|
||||
name: users
|
||||
# editors
|
||||
- party_id: -60
|
||||
- party_id": 60
|
||||
uuid: 176bfecc-c0fa-4e76-8935-5d6d0ec60e8c
|
||||
name: editors
|
||||
ccm_core.users:
|
||||
|
|
@ -30,7 +30,7 @@ ccm_core.users:
|
|||
email_address: john.doe@example.com
|
||||
family_name: Doe
|
||||
given_name: John
|
||||
party_id: -10
|
||||
party_id": 10
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
|
||||
password_reset_required: false
|
||||
|
|
@ -41,7 +41,7 @@ ccm_core.users:
|
|||
email_address: max.mustermann@example.org
|
||||
family_name: Mustermann
|
||||
given_name: Max
|
||||
party_id: -20
|
||||
party_id": 20
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
|
||||
password_reset_required: false
|
||||
|
|
@ -52,25 +52,25 @@ ccm_core.users:
|
|||
email_address: joe.public@example.com
|
||||
family_name: Public
|
||||
given_name: Joe
|
||||
party_id: -30
|
||||
party_id": 30
|
||||
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
|
||||
password_reset_required: false
|
||||
verified: true
|
||||
ccm_core.groups:
|
||||
# admins
|
||||
- party_id: -40
|
||||
- party_id": 40
|
||||
# users
|
||||
- party_id: -50
|
||||
- party_id": 50
|
||||
# editors
|
||||
- party_id: -60
|
||||
- party_id": 60
|
||||
ccm_core.group_memberships:
|
||||
# users <-> joe
|
||||
- membership_id: -300
|
||||
- membership_id": 300
|
||||
uuid: cf8ffbc6-96d3-4e23-9503-4b396ea112aa
|
||||
group_id: -50
|
||||
member_id: -30
|
||||
group_id": 50
|
||||
member_id": 30
|
||||
# editors <-> joe
|
||||
- membership_id: -400
|
||||
- membership_id": 400
|
||||
uuid: 610ad227-cc55-4a8f-b532-3a5204f9d2dd
|
||||
group_id: -60
|
||||
member_id: -30
|
||||
group_id": 60
|
||||
member_id": 30
|
||||
|
|
@ -1,26 +1,26 @@
|
|||
ccm_core.parties:
|
||||
# John Doe
|
||||
- party_id: -10
|
||||
- party_id": 10
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: jdoe
|
||||
# Max Muster
|
||||
- party_id: -20
|
||||
- party_id": 20
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: mmuster
|
||||
# Joe Public
|
||||
- party_id: -30
|
||||
- party_id": 30
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: joe
|
||||
# admins
|
||||
- party_id: -40
|
||||
- party_id": 40
|
||||
uuid: 0fc446b7-a242-4407-9d04-b8ccaaa9dee5
|
||||
name: admins
|
||||
# users
|
||||
- party_id: -50
|
||||
- party_id": 50
|
||||
uuid: 2082d7fc-8268-4195-8cbe-eb826b1afaeb
|
||||
name: users
|
||||
# editors
|
||||
- party_id: -60
|
||||
- party_id": 60
|
||||
uuid: 176bfecc-c0fa-4e76-8935-5d6d0ec60e8c
|
||||
name: editors
|
||||
ccm_core.users:
|
||||
|
|
@ -30,7 +30,7 @@ ccm_core.users:
|
|||
email_address: john.doe@example.com
|
||||
family_name: Doe
|
||||
given_name: John
|
||||
party_id: -10
|
||||
party_id": 10
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
|
||||
password_reset_required: false
|
||||
|
|
@ -41,7 +41,7 @@ ccm_core.users:
|
|||
email_address: max.mustermann@example.org
|
||||
family_name: Mustermann
|
||||
given_name: Max
|
||||
party_id: -20
|
||||
party_id": 20
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
|
||||
password_reset_required: false
|
||||
|
|
@ -52,35 +52,35 @@ ccm_core.users:
|
|||
email_address: joe.public@example.com
|
||||
family_name: Public
|
||||
given_name: Joe
|
||||
party_id: -30
|
||||
party_id": 30
|
||||
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
|
||||
password_reset_required: false
|
||||
verified: true
|
||||
ccm_core.groups:
|
||||
# admins
|
||||
- party_id: -40
|
||||
- party_id": 40
|
||||
# users
|
||||
- party_id: -50
|
||||
- party_id": 50
|
||||
# editors
|
||||
- party_id: -60
|
||||
- party_id": 60
|
||||
ccm_core.group_memberships:
|
||||
# admins <-> jdoe
|
||||
- membership_id: -100
|
||||
- membership_id": 100
|
||||
uuid: 1f9dad0a-c51a-49e7-8720-c3c669cde67e
|
||||
group_id: -40
|
||||
member_id: -10
|
||||
group_id": 40
|
||||
member_id": 10
|
||||
# users <-> mmuster
|
||||
- membership_id: -200
|
||||
- membership_id": 200
|
||||
uuid: 3837b1c2-b4e4-44b9-a92f-2330d76b51df
|
||||
group_id: -50
|
||||
member_id: -20
|
||||
group_id": 50
|
||||
member_id": 20
|
||||
# users <-> joe
|
||||
- membership_id: -300
|
||||
- membership_id": 300
|
||||
uuid: cf8ffbc6-96d3-4e23-9503-4b396ea112aa
|
||||
group_id: -50
|
||||
member_id: -30
|
||||
group_id": 50
|
||||
member_id": 30
|
||||
# editors <-> joe
|
||||
- membership_id: -400
|
||||
- membership_id": 400
|
||||
uuid: 610ad227-cc55-4a8f-b532-3a5204f9d2dd
|
||||
group_id: -60
|
||||
member_id: -30
|
||||
group_id": 60
|
||||
member_id": 30
|
||||
|
|
@ -1,10 +1,10 @@
|
|||
ccm_core.parties:
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: admins
|
||||
- party_id: -30
|
||||
- party_id: 30
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: editors
|
||||
ccm_core.groups:
|
||||
- party_id: -10
|
||||
- party_id: -30
|
||||
- party_id: 10
|
||||
- party_id: 30
|
||||
|
|
@ -1,14 +1,14 @@
|
|||
ccm_core.parties:
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: admins
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: users
|
||||
- party_id: -30
|
||||
- party_id: 30
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: authors
|
||||
ccm_core.groups:
|
||||
- party_id: -10
|
||||
- party_id: -20
|
||||
- party_id: -30
|
||||
- party_id: 10
|
||||
- party_id: 20
|
||||
- party_id: 30
|
||||
|
|
@ -1,18 +1,18 @@
|
|||
ccm_core.parties:
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: admins
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: users
|
||||
- party_id: -30
|
||||
- party_id: 30
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: editors
|
||||
- party_id: -40
|
||||
- party_id: 40
|
||||
uuid: 0fc446b7-a242-4407-9d04-b8ccaaa9dee5
|
||||
name: authors
|
||||
ccm_core.groups:
|
||||
- party_id: -10
|
||||
- party_id: -20
|
||||
- party_id: -30
|
||||
- party_id: -40
|
||||
- party_id: 10
|
||||
- party_id: 20
|
||||
- party_id: 30
|
||||
- party_id: 40
|
||||
|
|
@ -1,14 +1,14 @@
|
|||
ccm_core.parties:
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: admins
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: users
|
||||
- party_id: -30
|
||||
- party_id: 30
|
||||
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
|
||||
name: editors
|
||||
ccm_core.groups:
|
||||
- party_id: -10
|
||||
- party_id: -20
|
||||
- party_id: -30
|
||||
- party_id: 10
|
||||
- party_id: 20
|
||||
- party_id: 30
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
ccm_core.parties:
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: admins
|
||||
ccm_core.groups:
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
ccm_core.users:
|
||||
|
||||
|
|
@ -1,13 +1,13 @@
|
|||
ccm_core.parties:
|
||||
# John Doe
|
||||
- party_id: -10
|
||||
- party_id: 10
|
||||
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
|
||||
name: jdoe
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
|
||||
name: managers
|
||||
ccm_core.groups:
|
||||
- party_id: -20
|
||||
- party_id: 20
|
||||
ccm_core.users:
|
||||
# John Doe
|
||||
- banned: false
|
||||
|
|
@ -15,7 +15,7 @@ ccm_core.users:
|
|||
email_address: john.doe@example.com
|
||||
family_name: Doe
|
||||
given_name: John
|
||||
party_id: -10
|
||||
party_id: 10
|
||||
# foo123
|
||||
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
|
||||
password_reset_required: false
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue