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
pull/2/head
jensp 2019-03-25 20:31:22 +00:00
parent c7829a961c
commit 30f689d391
126 changed files with 3033 additions and 2991 deletions

View File

@ -63,7 +63,7 @@ public class LocalizedString implements Serializable {
/** /**
* The localised values of the string. * The localised values of the string.
*/ */
@ElementCollection(fetch = FetchType.EAGER) @ElementCollection(fetch = FetchType.LAZY)
@MapKeyColumn(name = "LOCALE") @MapKeyColumn(name = "LOCALE")
@Column(name = "LOCALIZED_VALUE") @Column(name = "LOCALIZED_VALUE")
@Basic @Basic

View File

@ -36,7 +36,7 @@ import javax.persistence.Table;
* *
* Only applications which are different for each site should extend this class. * Only applications which are different for each site should extend this class.
* For example for the Admin application or the Content Center application * 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. * 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 * 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 * of course site aware. The Pages application for example manages the page tree

View File

@ -142,6 +142,7 @@ public class CategoryManagerTest {
.addPackage(org.libreccm.web.CcmApplication.class.getPackage()) .addPackage(org.libreccm.web.CcmApplication.class.getPackage())
.addPackage(org.libreccm.workflow.Workflow.class.getPackage()) .addPackage(org.libreccm.workflow.Workflow.class.getPackage())
.addPackage(org.libreccm.cdi.utils.CdiUtil.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.KernelConfig.class)
.addClass(com.arsdigita.kernel.security.SecurityConfig.class) .addClass(com.arsdigita.kernel.security.SecurityConfig.class)
.addAsLibraries(getModuleDependencies()) .addAsLibraries(getModuleDependencies())
@ -197,16 +198,23 @@ public class CategoryManagerTest {
* adds an object to a category. * adds an object to a category.
*/ */
@Test @Test
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest/" @UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest"
+ "data.yml") + "/data.yml")
@ShouldMatchDataSet( @ShouldMatchDataSet(
excludeColumns = {
"categorization_id",
"uuid"
},
orderBy = {
"categorizations.object_order"
},
value = "datasets/org/libreccm/categorization/CategoryManagerTest/" value = "datasets/org/libreccm/categorization/CategoryManagerTest/"
+ "after-add-obj-to-category.yml", + "after-add-obj-to-category.yml"
excludeColumns = {"categorization_id"}) )
@InSequence(1100) @InSequence(1100)
public void addObjectToCategoryBySystemUser() { public void addObjectToCategoryBySystemUser() {
final Optional<CcmObject> object2 = ccmObjectRepo.findById(-3200L); final Optional<CcmObject> object2 = ccmObjectRepo.findById(3200L);
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
assertThat(object2.isPresent(), is(true)); assertThat(object2.isPresent(), is(true));
assertThat(foo.isPresent(), is(true)); assertThat(foo.isPresent(), is(true));
@ -220,16 +228,23 @@ public class CategoryManagerTest {
* domain to the categories works. * domain to the categories works.
*/ */
@Test @Test
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest/" @UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest"
+ "data.yml") + "/data.yml")
@ShouldMatchDataSet( @ShouldMatchDataSet(
value = "datasets/org/libreccm/categorization/CategoryManagerTest/" excludeColumns = {
+ "after-add-obj-to-category.yml", "categorization_id",
excludeColumns = {"categorization_id"}) "uuid"
},
orderBy = {
"categorizations.categorization_id"
},
value = "datasets/org/libreccm/categorization/CategoryManagerTest"
+ "/after-add-obj-to-category.yml"
)
@InSequence(1200) @InSequence(1200)
public void addObjectToCategoryAuthByDomain() { public void addObjectToCategoryAuthByDomain() {
final Optional<CcmObject> object2 = ccmObjectRepo.findById(-3200L); final Optional<CcmObject> object2 = ccmObjectRepo.findById(3200L);
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
assertThat(object2.isPresent(), is(true)); assertThat(object2.isPresent(), is(true));
assertThat(foo.isPresent(), is(true)); assertThat(foo.isPresent(), is(true));
@ -249,16 +264,23 @@ public class CategoryManagerTest {
* categories. * categories.
*/ */
@Test @Test
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest/" @UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest"
+ "data.yml") + "/data.yml")
@ShouldMatchDataSet( @ShouldMatchDataSet(
value = "datasets/org/libreccm/categorization/CategoryManagerTest/" excludeColumns = {
+ "after-add-obj-to-category.yml", "categorization_id",
excludeColumns = {"categorization_id"}) "uuid"
},
orderBy = {
"categorizations.categorization_id"
},
value = "datasets/org/libreccm/categorization/CategoryManagerTest"
+ "/after-add-obj-to-category.yml"
)
@InSequence(1300) @InSequence(1300)
public void addObjectToCategoryAuthByCategory() { public void addObjectToCategoryAuthByCategory() {
final Optional<CcmObject> object2 = ccmObjectRepo.findById(-3200L); final Optional<CcmObject> object2 = ccmObjectRepo.findById(3200L);
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
assertThat(object2.isPresent(), is(true)); assertThat(object2.isPresent(), is(true));
assertThat(foo.isPresent(), is(true)); assertThat(foo.isPresent(), is(true));
@ -283,8 +305,8 @@ public class CategoryManagerTest {
@ShouldThrowException(UnauthorizedException.class) @ShouldThrowException(UnauthorizedException.class)
@InSequence(1400) @InSequence(1400)
public void addObjectToCategoryNotAuthorized() { public void addObjectToCategoryNotAuthorized() {
final Optional<CcmObject> object2 = ccmObjectRepo.findById(-3200L); final Optional<CcmObject> object2 = ccmObjectRepo.findById(3200L);
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
assertThat(object2.isPresent(), is(true)); assertThat(object2.isPresent(), is(true));
assertThat(foo.isPresent(), is(true)); assertThat(foo.isPresent(), is(true));
@ -311,8 +333,8 @@ public class CategoryManagerTest {
public void removeObjectFromCategoryBySystemUser() public void removeObjectFromCategoryBySystemUser()
throws ObjectNotAssignedToCategoryException { throws ObjectNotAssignedToCategoryException {
final Optional<CcmObject> object1 = ccmObjectRepo.findById(-3100L); final Optional<CcmObject> object1 = ccmObjectRepo.findById(3300L);
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2200L);
assertThat(object1.isPresent(), is(true)); assertThat(object1.isPresent(), is(true));
assertThat(foo.isPresent(), is(true)); assertThat(foo.isPresent(), is(true));
@ -344,8 +366,8 @@ public class CategoryManagerTest {
public void removeObjectFromCategoryAuthByDomain() public void removeObjectFromCategoryAuthByDomain()
throws ObjectNotAssignedToCategoryException { throws ObjectNotAssignedToCategoryException {
final Optional<CcmObject> object1 = ccmObjectRepo.findById(-3100L); final Optional<CcmObject> object1 = ccmObjectRepo.findById(3300L);
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2200L);
assertThat(object1.isPresent(), is(true)); assertThat(object1.isPresent(), is(true));
assertThat(foo.isPresent(), is(true)); assertThat(foo.isPresent(), is(true));
@ -370,18 +392,20 @@ public class CategoryManagerTest {
* @throws ObjectNotAssignedToCategoryException * @throws ObjectNotAssignedToCategoryException
*/ */
@Test @Test
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest/" @UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest"
+ "data.yml") + "/data.yml")
@ShouldMatchDataSet( @ShouldMatchDataSet(
value = "datasets/org/libreccm/categorization/CategoryManagerTest/" excludeColumns = {
+ "after-remove-obj-from-category.yml", },
excludeColumns = {"categorization_id"}) value = "datasets/org/libreccm/categorization/CategoryManagerTest"
+ "/after-remove-obj-from-category.yml"
)
@InSequence(2200) @InSequence(2200)
public void removeObjectFromCategoryAuthByCategory() public void removeObjectFromCategoryAuthByCategory()
throws ObjectNotAssignedToCategoryException { throws ObjectNotAssignedToCategoryException {
final Optional<CcmObject> object1 = ccmObjectRepo.findById(-3100L); final Optional<CcmObject> object1 = ccmObjectRepo.findById(3300L);
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2200L);
assertThat(object1.isPresent(), is(true)); assertThat(object1.isPresent(), is(true));
assertThat(foo.isPresent(), is(true)); assertThat(foo.isPresent(), is(true));
@ -411,8 +435,8 @@ public class CategoryManagerTest {
public void removeObjectFromCategoryNotAuthorized() public void removeObjectFromCategoryNotAuthorized()
throws ObjectNotAssignedToCategoryException { throws ObjectNotAssignedToCategoryException {
final Optional<CcmObject> object1 = ccmObjectRepo.findById(-3100L); final Optional<CcmObject> object1 = ccmObjectRepo.findById(3100L);
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
assertThat(object1.isPresent(), is(true)); assertThat(object1.isPresent(), is(true));
assertThat(foo.isPresent(), is(true)); assertThat(foo.isPresent(), is(true));
@ -444,7 +468,7 @@ public class CategoryManagerTest {
query.setParameter("name", "category-new"); query.setParameter("name", "category-new");
final Category sub = query.getSingleResult(); final Category sub = query.getSingleResult();
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
shiro.getSystemUser().execute( shiro.getSystemUser().execute(
() -> categoryManager.addSubCategoryToCategory(sub, foo.get())); () -> categoryManager.addSubCategoryToCategory(sub, foo.get()));
@ -475,7 +499,7 @@ public class CategoryManagerTest {
query.setParameter("name", "category-new"); query.setParameter("name", "category-new");
final Category sub = query.getSingleResult(); final Category sub = query.getSingleResult();
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
final UsernamePasswordToken token = new UsernamePasswordToken( final UsernamePasswordToken token = new UsernamePasswordToken(
"jane.doe@example.org", "foo123"); "jane.doe@example.org", "foo123");
@ -492,12 +516,16 @@ public class CategoryManagerTest {
* set of the category. * set of the category.
*/ */
@Test @Test
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest/" @UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest"
+ "data.yml") + "/data.yml")
@ShouldMatchDataSet( @ShouldMatchDataSet(
value = "datasets/org/libreccm/categorization/" excludeColumns = {
+ "CategoryManagerTest/after-add-subcategory.yml", "object_id",
excludeColumns = {"object_id", "uuid"}) "uuid"
},
value = "datasets/org/libreccm/categorization"
+ "/CategoryManagerTest/after-add-subcategory.yml"
)
@InSequence(3000) @InSequence(3000)
public void addSubCategoryToCategoryAuthByCategory() { public void addSubCategoryToCategoryAuthByCategory() {
final Category category = new Category(); final Category category = new Category();
@ -512,7 +540,7 @@ public class CategoryManagerTest {
query.setParameter("name", "category-new"); query.setParameter("name", "category-new");
final Category sub = query.getSingleResult(); final Category sub = query.getSingleResult();
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
final UsernamePasswordToken token = new UsernamePasswordToken( final UsernamePasswordToken token = new UsernamePasswordToken(
"mmuster@example.com", "foo123"); "mmuster@example.com", "foo123");
@ -548,7 +576,7 @@ public class CategoryManagerTest {
query.setParameter("name", "category-new"); query.setParameter("name", "category-new");
final Category sub = query.getSingleResult(); final Category sub = query.getSingleResult();
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
categoryManager.addSubCategoryToCategory(sub, foo.get()); categoryManager.addSubCategoryToCategory(sub, foo.get());
} }
@ -566,8 +594,8 @@ public class CategoryManagerTest {
excludeColumns = {"categorization_id", "object_id"}) excludeColumns = {"categorization_id", "object_id"})
@InSequence(4000) @InSequence(4000)
public void removeSubCategoryFromCategoryBySystemUser() { public void removeSubCategoryFromCategoryBySystemUser() {
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
final Optional<Category> bar = categoryRepo.findById(-2200L); final Optional<Category> bar = categoryRepo.findById(2200L);
shiro.getSystemUser().execute( shiro.getSystemUser().execute(
() -> categoryManager.removeSubCategoryFromCategory(bar.get(), () -> categoryManager.removeSubCategoryFromCategory(bar.get(),
@ -588,8 +616,8 @@ public class CategoryManagerTest {
excludeColumns = {"categorization_id", "object_id"}) excludeColumns = {"categorization_id", "object_id"})
@InSequence(4000) @InSequence(4000)
public void removeSubCategoryFromCategoryAuthByDomain() { public void removeSubCategoryFromCategoryAuthByDomain() {
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
final Optional<Category> bar = categoryRepo.findById(-2200L); final Optional<Category> bar = categoryRepo.findById(2200L);
final UsernamePasswordToken token = new UsernamePasswordToken( final UsernamePasswordToken token = new UsernamePasswordToken(
"jane.doe@example.org", "foo123"); "jane.doe@example.org", "foo123");
@ -614,8 +642,8 @@ public class CategoryManagerTest {
excludeColumns = {"categorization_id", "object_id"}) excludeColumns = {"categorization_id", "object_id"})
@InSequence(4000) @InSequence(4000)
public void removeSubCategoryFromCategoryAuthByCategory() { public void removeSubCategoryFromCategoryAuthByCategory() {
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
final Optional<Category> bar = categoryRepo.findById(-2200L); final Optional<Category> bar = categoryRepo.findById(2200L);
final UsernamePasswordToken token = new UsernamePasswordToken( final UsernamePasswordToken token = new UsernamePasswordToken(
"mmuster@example.com", "foo123"); "mmuster@example.com", "foo123");
@ -639,8 +667,8 @@ public class CategoryManagerTest {
@ShouldThrowException(UnauthorizedException.class) @ShouldThrowException(UnauthorizedException.class)
@InSequence(4000) @InSequence(4000)
public void removeSubCategoryFromCategoryNotAuthorized() { public void removeSubCategoryFromCategoryNotAuthorized() {
final Optional<Category> foo = categoryRepo.findById(-2100L); final Optional<Category> foo = categoryRepo.findById(2100L);
final Optional<Category> bar = categoryRepo.findById(-2200L); final Optional<Category> bar = categoryRepo.findById(2200L);
categoryManager.removeSubCategoryFromCategory(bar.get(), foo.get()); categoryManager.removeSubCategoryFromCategory(bar.get(), foo.get());
} }
@ -650,12 +678,20 @@ public class CategoryManagerTest {
* created without saving each category after the creation of each category. * created without saving each category after the creation of each category.
*/ */
@Test @Test
@UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest/" @UsingDataSet("datasets/org/libreccm/categorization/CategoryManagerTest"
+ "data.yml") + "/data.yml")
@ShouldMatchDataSet( @ShouldMatchDataSet(
excludeColumns = {
"object_id",
"parent_category_id",
"uuid"
},
orderBy = {
"categorizations.category_order"
},
value = "datasets/org/libreccm/categorization/CategoryManagerTest/" value = "datasets/org/libreccm/categorization/CategoryManagerTest/"
+ "after-create-multiple-categories.yml", + "after-create-multiple-categories.yml"
excludeColumns = {"object_id", "uuid"}) )
@InSequence(5000) @InSequence(5000)
public void createMultipleCategories() { public void createMultipleCategories() {
@ -703,8 +739,8 @@ public class CategoryManagerTest {
+ "data.yml") + "data.yml")
@InSequence(6000) @InSequence(6000)
public void hasIndexObject() { public void hasIndexObject() {
final Optional<Category> category1 = categoryRepo.findById(-2100L); final Optional<Category> category1 = categoryRepo.findById(2100L);
final Optional<Category> category2 = categoryRepo.findById(-2200L); final Optional<Category> category2 = categoryRepo.findById(2200L);
assertThat(categoryManager.hasIndexObject(category1.get()), is(false)); assertThat(categoryManager.hasIndexObject(category1.get()), is(false));
assertThat(categoryManager.hasIndexObject(category2.get()), is(true)); 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 * 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 @Test
@UsingDataSet( @UsingDataSet(
"datasets/org/libreccm/categorization/CategoryManagerTest/data.yml") "datasets/org/libreccm/categorization/CategoryManagerTest/data.yml")
@InSequence(6500) @InSequence(6500)
public void getIndexObject() { public void getIndexObject() {
final Optional<Category> category1 = categoryRepo.findById(-2100L); final Optional<Category> category1 = categoryRepo.findById(2100L);
final Optional<Category> category2 = categoryRepo.findById(-2200L); final Optional<Category> category2 = categoryRepo.findById(2200L);
assertThat(categoryManager assertThat(categoryManager
.getIndexObject(category1.get()) .getIndexObject(category1.get())
@ -749,7 +786,7 @@ public class CategoryManagerTest {
public void retrieveMultipleLazyCollections() { public void retrieveMultipleLazyCollections() {
assertThat(controller, is(not(nullValue()))); 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> subCategories = data.get("subCategories");
final List<String> objects = data.get("objects"); final List<String> objects = data.get("objects");

View File

@ -38,4 +38,4 @@ DELETE FROM ccm_core.ccm_objects_aud;
DELETE FROM ccm_core.ccm_revisions; DELETE FROM ccm_core.ccm_revisions;
ALTER SEQUENCE hibernate_sequence RESTART WITH 1; ALTER SEQUENCE hibernate_sequence RESTART WITH 100000;

View File

@ -830,7 +830,7 @@ drop sequence if exists HIBERNATE_SEQUENCE;
alter table CCM_CORE.WORKFLOWS alter table CCM_CORE.WORKFLOWS
add constraint UK_o113id7d1cxql0edsrohlnn9x unique (UUID); 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 alter table CCM_CORE.APPLICATIONS
add constraint FKatcp9ij6mbkx0nfeig1o6n3lm add constraint FKatcp9ij6mbkx0nfeig1o6n3lm

View File

@ -38,4 +38,4 @@ DELETE FROM ccm_core.ccm_objects_aud;
DELETE FROM ccm_core.ccm_revisions; DELETE FROM ccm_core.ccm_revisions;
ALTER SEQUENCE hibernate_sequence RESTART; ALTER SEQUENCE hibernate_sequence RESTART with 100000;

View File

@ -830,7 +830,7 @@ create schema CCM_CORE;
alter table CCM_CORE.WORKFLOWS alter table CCM_CORE.WORKFLOWS
add constraint UK_o113id7d1cxql0edsrohlnn9x unique (UUID); 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 alter table CCM_CORE.APPLICATIONS
add constraint FKatcp9ij6mbkx0nfeig1o6n3lm add constraint FKatcp9ij6mbkx0nfeig1o6n3lm

View File

@ -1,77 +1,77 @@
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -1000 - object_id: 1000
display_name: test display_name: test
uuid: 3b7c7685-340b-48d2-8f27-781a04833634 uuid: 3b7c7685-340b-48d2-8f27-781a04833634
- object_id: -2000 - object_id: 2000
display_name: test_root display_name: test_root
uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9 uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9
- object_id: -2100 - object_id: 2100
display_name: foo display_name: foo
uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6 uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6
- object_id: -2200 - object_id: 2200
display_name: bar display_name: bar
uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8 uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8
- object_id: -3100 - object_id: 3100
display_name: object1 display_name: object1
uuid: b82ea94b-875b-46b1-9078-40e457f25868 uuid: b82ea94b-875b-46b1-9078-40e457f25868
- object_id: -3200 - object_id: 3200
display_name: object2 display_name: object2
uuid: 06a838e5-d396-49e4-bcf2-1dabed441406 uuid: 06a838e5-d396-49e4-bcf2-1dabed441406
- object_id: -3300 - object_id: 3300
display_name: object3 display_name: object3
uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28 uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28
ccm_core.categories: ccm_core.categories:
- object_id: -2000 - object_id: 2000
unique_id: test0001 unique_id: test0001
name: test-root name: test-root
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2100 - object_id: 2100
unique_id: test0002 unique_id: test0002
name: foo name: foo
parent_category_id: -2000 parent_category_id: 2000
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2200 - object_id: 2200
unique_id: test0003 unique_id: test0003
name: bar name: bar
parent_category_id: -2100 parent_category_id: 2100
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
ccm_core.category_domains: ccm_core.category_domains:
- object_id: -1000 - object_id: 1000
domain_key: test domain_key: test
root_category_id: -2000 root_category_id: 2000
uri: http://libreccm.org/test uri: http://libreccm.org/test
version: 1.0 version: 1.0
ccm_core.categorizations: ccm_core.categorizations:
- categorization_id: -10000 - categorization_id: 10000
uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf
category_id: -2100 category_id: 2100
object_id: -3100 object_id: 3100
object_order: 1 object_order: 1
category_order: 1 category_order: 1
category_index: false category_index: false
- categorization_id: -10100 - categorization_id: 10100
uuid: 50780558-5851-4eb2-8398-460173507a1b uuid: 50780558-5851-4eb2-8398-460173507a1b
category_id: -2200 category_id: 2200
object_id: -3300 object_id: 3300
category_order: 1 category_order: 1
object_order: 1 object_order: 1
category_index: true category_index: true
- categorization_id: -10200 - categorization_id: 10200
uuid: 05014503-0763-41e3-883c-461721beee6f uuid: 05014503-0763-41e3-883c-461721beee6f
object_id: -3200 object_id: 3200
category_id: -2100 category_id: 2100
category_order: 1 category_order: 1
object_order: 2 object_order: 2
category_index: false category_index: false

View File

@ -1,81 +1,81 @@
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -1000 - object_id: 1000
display_name: test display_name: test
uuid: 3b7c7685-340b-48d2-8f27-781a04833634 uuid: 3b7c7685-340b-48d2-8f27-781a04833634
- object_id: -2000 - object_id: 2000
display_name: test_root display_name: test_root
uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9 uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9
- object_id: -2100 - object_id: 2100
display_name: foo display_name: foo
uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6 uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6
- object_id: -2200 - object_id: 2200
display_name: bar display_name: bar
uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8 uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8
- object_id: -3100 - object_id: 3100
display_name: object1 display_name: object1
uuid: b82ea94b-875b-46b1-9078-40e457f25868 uuid: b82ea94b-875b-46b1-9078-40e457f25868
- object_id: -3200 - object_id: 3200
display_name: object2 display_name: object2
uuid: 06a838e5-d396-49e4-bcf2-1dabed441406 uuid: 06a838e5-d396-49e4-bcf2-1dabed441406
- object_id: -3300 - object_id: 3300
display_name: object3 display_name: object3
uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28 uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28
- object_id: -2300 - object_id: 2300
display_name: category-new display_name: category-new
uuid: d9c8ad5d-0450-4d81-be25-721188710880 uuid: d9c8ad5d-0450-4d81-be25-721188710880
ccm_core.categories: ccm_core.categories:
- object_id: -2000 - object_id: 2000
unique_id: test0001 unique_id: test0001
name: test-root name: test-root
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2100 - object_id: 2100
unique_id: test0002 unique_id: test0002
name: foo name: foo
parent_category_id: -2000 parent_category_id: 2000
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2200 - object_id: 2200
unique_id: test0003 unique_id: test0003
name: bar name: bar
parent_category_id: -2100 parent_category_id: 2100
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2300 - object_id: 2300
unique_id: catnew unique_id: catnew
name: category-new name: category-new
parent_category_id: -2100 parent_category_id: 2100
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 2 category_order: 2
ccm_core.category_domains: ccm_core.category_domains:
- object_id: -1000 - object_id: 1000
domain_key: test domain_key: test
root_category_id: -2000 root_category_id: 2000
uri: http://libreccm.org/test uri: http://libreccm.org/test
version: 1.0 version: 1.0
ccm_core.categorizations: ccm_core.categorizations:
- categorization_id: -10000 - categorization_id: 10000
uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf
category_id: -2100 category_id: 2100
object_id: -3100 object_id: 3100
object_order: 1 object_order: 1
category_order: 1 category_order: 1
category_index: false category_index: false
- categorization_id: -10100 - categorization_id: 10100
uuid: 50780558-5851-4eb2-8398-460173507a1b uuid: 50780558-5851-4eb2-8398-460173507a1b
category_id: -2200 category_id: 2200
object_id: -3300 object_id: 3300
category_order: 1 category_order: 1
object_order: 1 object_order: 1
category_index: true category_index: true

View File

@ -1,23 +1,23 @@
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -1000 - object_id: 1000
display_name: test display_name: test
uuid: 3b7c7685-340b-48d2-8f27-781a04833634 uuid: 3b7c7685-340b-48d2-8f27-781a04833634
- object_id: -2000 - object_id: 2000
display_name: test_root display_name: test_root
uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9 uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9
- object_id: -2100 - object_id: 2100
display_name: foo display_name: foo
uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6 uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6
- object_id: -2200 - object_id: 2200
display_name: bar display_name: bar
uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8 uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8
- object_id: -3100 - object_id: 3100
display_name: object1 display_name: object1
uuid: b82ea94b-875b-46b1-9078-40e457f25868 uuid: b82ea94b-875b-46b1-9078-40e457f25868
- object_id: -3200 - object_id: 3200
display_name: object2 display_name: object2
uuid: 06a838e5-d396-49e4-bcf2-1dabed441406 uuid: 06a838e5-d396-49e4-bcf2-1dabed441406
- object_id: -3300 - object_id: 3300
display_name: object3 display_name: object3
uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28 uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28
- object_id: 1 - object_id: 1
@ -34,25 +34,25 @@ ccm_core.ccm_objects:
uuid: 59aa434c-0220-4841-bf3f-f58d311607aa uuid: 59aa434c-0220-4841-bf3f-f58d311607aa
ccm_core.categories: ccm_core.categories:
- object_id: -2000 - object_id: 2000
unique_id: test0001 unique_id: test0001
name: test-root name: test-root
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2100 - object_id: 2100
unique_id: test0002 unique_id: test0002
name: foo name: foo
parent_category_id: -2000 parent_category_id: 2000
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2200 - object_id: 2200
unique_id: test0003 unique_id: test0003
name: bar name: bar
parent_category_id: -2100 parent_category_id: 2100
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
@ -60,7 +60,7 @@ ccm_core.categories:
- object_id: 1 - object_id: 1
unique_id: com unique_id: com
name: com name: com
parent_category_id: -2000 parent_category_id: 2000
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
@ -91,24 +91,24 @@ ccm_core.categories:
category_order: 1 category_order: 1
ccm_core.category_domains: ccm_core.category_domains:
- object_id: -1000 - object_id: 1000
domain_key: test domain_key: test
root_category_id: -2000 root_category_id: 2000
uri: http://libreccm.org/test uri: http://libreccm.org/test
version: 1.0 version: 1.0
ccm_core.categorizations: ccm_core.categorizations:
- categorization_id: -10000 - categorization_id: 10000
uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf
category_id: -2100 category_id: 2100
object_id: -3100 object_id: 3100
object_order: 1 object_order: 1
category_order: 1 category_order: 1
category_index: false category_index: false
- categorization_id: -10100 - categorization_id: 10100
uuid: 50780558-5851-4eb2-8398-460173507a1b uuid: 50780558-5851-4eb2-8398-460173507a1b
category_id: -2200 category_id: 2200
object_id: -3300 object_id: 3300
category_order: 1 category_order: 1
object_order: 1 object_order: 1
category_index: true category_index: true

View File

@ -1,63 +1,63 @@
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -1000 - object_id: 1000
display_name: test display_name: test
uuid: 3b7c7685-340b-48d2-8f27-781a04833634 uuid: 3b7c7685-340b-48d2-8f27-781a04833634
- object_id: -2000 - object_id: 2000
display_name: test_root display_name: test_root
uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9 uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9
- object_id: -2100 - object_id: 2100
display_name: foo display_name: foo
uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6 uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6
- object_id: -2200 - object_id: 2200
display_name: bar display_name: bar
uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8 uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8
- object_id: -3100 - object_id: 3100
display_name: object1 display_name: object1
uuid: b82ea94b-875b-46b1-9078-40e457f25868 uuid: b82ea94b-875b-46b1-9078-40e457f25868
- object_id: -3200 - object_id: 3200
display_name: object2 display_name: object2
uuid: 06a838e5-d396-49e4-bcf2-1dabed441406 uuid: 06a838e5-d396-49e4-bcf2-1dabed441406
- object_id: -3300 - object_id: 3300
display_name: object3 display_name: object3
uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28 uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28
ccm_core.categories: ccm_core.categories:
- object_id: -2000 - object_id: 2000
unique_id: test0001 unique_id: test0001
name: test-root name: test-root
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2100 - object_id: 2100
unique_id: test0002 unique_id: test0002
name: foo name: foo
parent_category_id: -2000 parent_category_id: 2000
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2200 - object_id: 2200
unique_id: test0003 unique_id: test0003
name: bar name: bar
parent_category_id: -2100 parent_category_id: 2100
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
ccm_core.category_domains: ccm_core.category_domains:
- object_id: -1000 - object_id: 1000
domain_key: test domain_key: test
root_category_id: -2000 root_category_id: 2000
uri: http://libreccm.org/test uri: http://libreccm.org/test
version: 1.0 version: 1.0
ccm_core.categorizations: ccm_core.categorizations:
- categorization_id: -10000 - categorization_id: 10000
uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf
category_id: -2100 category_id: 2100
object_id: -3100 object_id: 3100
object_order: 1 object_order: 1
category_order: 1 category_order: 1
category_index: false category_index: false

View File

@ -1,43 +1,43 @@
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -1000 - object_id: 1000
display_name: test display_name: test
uuid: 3b7c7685-340b-48d2-8f27-781a04833634 uuid: 3b7c7685-340b-48d2-8f27-781a04833634
- object_id: -2000 - object_id: 2000
display_name: test_root display_name: test_root
uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9 uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9
- object_id: -2100 - object_id: 2100
display_name: foo display_name: foo
uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6 uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6
- object_id: -2200 - object_id: 2200
display_name: bar display_name: bar
uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8 uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8
- object_id: -3100 - object_id: 3100
display_name: object1 display_name: object1
uuid: b82ea94b-875b-46b1-9078-40e457f25868 uuid: b82ea94b-875b-46b1-9078-40e457f25868
- object_id: -3200 - object_id: 3200
display_name: object2 display_name: object2
uuid: 06a838e5-d396-49e4-bcf2-1dabed441406 uuid: 06a838e5-d396-49e4-bcf2-1dabed441406
- object_id: -3300 - object_id: 3300
display_name: object3 display_name: object3
uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28 uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28
ccm_core.categories: ccm_core.categories:
- object_id: -2000 - object_id: 2000
unique_id: test0001 unique_id: test0001
name: test-root name: test-root
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2100 - object_id: 2100
unique_id: test0002 unique_id: test0002
name: foo name: foo
parent_category_id: -2000 parent_category_id: 2000
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2200 - object_id: 2200
unique_id: test0003 unique_id: test0003
name: bar name: bar
enabled: true enabled: true
@ -46,24 +46,24 @@ ccm_core.categories:
category_order: 0 category_order: 0
ccm_core.category_domains: ccm_core.category_domains:
- object_id: -1000 - object_id: 1000
domain_key: test domain_key: test
root_category_id: -2000 root_category_id: 2000
uri: http://libreccm.org/test uri: http://libreccm.org/test
version: 1.0 version: 1.0
ccm_core.categorizations: ccm_core.categorizations:
- categorization_id: -10000 - categorization_id: 10000
uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf
category_id: -2100 category_id: 2100
object_id: -3100 object_id: 3100
object_order: 1 object_order: 1
category_order: 1 category_order: 1
category_index: false category_index: false
- categorization_id: -10100 - categorization_id: 10100
uuid: 50780558-5851-4eb2-8398-460173507a1b uuid: 50780558-5851-4eb2-8398-460173507a1b
category_id: -2200 category_id: 2200
object_id: -3300 object_id: 3300
category_order: 1 category_order: 1
object_order: 1 object_order: 1
category_index: true category_index: true

View File

@ -1,87 +1,87 @@
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -1000 - object_id: 1000
display_name: test display_name: test
uuid: 3b7c7685-340b-48d2-8f27-781a04833634 uuid: 3b7c7685-340b-48d2-8f27-781a04833634
- object_id: -2000 - object_id: 2000
display_name: test_root display_name: test_root
uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9 uuid: 35a74731-d700-431a-b0cf-6d548f3d77c9
- object_id: -2100 - object_id: 2100
display_name: foo display_name: foo
uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6 uuid: 6b5e0a4b-6a09-4108-ac43-f46b59bc2bc6
- object_id: -2200 - object_id: 2200
display_name: bar display_name: bar
uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8 uuid: 0482f4e1-d1f0-44a1-8bef-2b978e00e9a8
- object_id: -3100 - object_id: 3100
display_name: object1 display_name: object1
uuid: b82ea94b-875b-46b1-9078-40e457f25868 uuid: b82ea94b-875b-46b1-9078-40e457f25868
- object_id: -3200 - object_id: 3200
display_name: object2 display_name: object2
uuid: 06a838e5-d396-49e4-bcf2-1dabed441406 uuid: 06a838e5-d396-49e4-bcf2-1dabed441406
- object_id: -3300 - object_id: 3300
display_name: object3 display_name: object3
uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28 uuid: 95f03070-9ea1-4e33-8e1b-8108075aac28
ccm_core.categories: ccm_core.categories:
- object_id: -2000 - object_id: 2000
unique_id: test0001 unique_id: test0001
name: test-root name: test-root
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2100 - object_id: 2100
unique_id: test0002 unique_id: test0002
name: foo name: foo
parent_category_id: -2000 parent_category_id: 2000
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2200 - object_id: 2200
unique_id: test0003 unique_id: test0003
name: bar name: bar
parent_category_id: -2100 parent_category_id: 2100
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
ccm_core.category_domains: ccm_core.category_domains:
- object_id: -1000 - object_id: 1000
domain_key: test domain_key: test
root_category_id: -2000 root_category_id: 2000
uri: http://libreccm.org/test uri: http://libreccm.org/test
version: 1.0 version: 1.0
ccm_core.categorizations: ccm_core.categorizations:
- categorization_id: -10000 - categorization_id: 10000
uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf uuid: 5ace8dbb-2e8a-4bf6-932a-22591be326bf
category_id: -2100 category_id: 2100
object_id: -3100 object_id: 3100
object_order: 1 object_order: 1
category_order: 1 category_order: 1
category_index: false category_index: false
- categorization_id: -10100 - categorization_id: 10100
uuid: 50780558-5851-4eb2-8398-460173507a1b uuid: 50780558-5851-4eb2-8398-460173507a1b
category_id: -2200 category_id: 2200
object_id: -3300 object_id: 3300
category_order: 1 category_order: 1
object_order: 1 object_order: 1
category_index: true category_index: true
ccm_core.parties: ccm_core.parties:
- party_id: -3000 - party_id: 3000
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: public-user name: public-user
- party_id: -3100 - party_id: 3100
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: jdoe name: jdoe
- party_id: -3200 - party_id: 3200
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: mmuster name: mmuster
ccm_core.users: ccm_core.users:
- party_id: -3000 - party_id: 3000
given_name: public given_name: public
family_name: user family_name: user
email_address: public-user@localhost email_address: public-user@localhost
@ -89,7 +89,7 @@ ccm_core.users:
bouncing: false bouncing: false
verified: true verified: true
password_reset_required: false password_reset_required: false
- party_id: -3100 - party_id: 3100
given_name: Jane given_name: Jane
family_name: Doe family_name: Doe
email_address: jane.doe@example.org email_address: jane.doe@example.org
@ -99,7 +99,7 @@ ccm_core.users:
bouncing: false bouncing: false
verified: true verified: true
password_reset_required: false password_reset_required: false
- party_id: -3200 - party_id: 3200
given_name: Maria given_name: Maria
family_name: Muster family_name: Muster
email_address: mmuster@example.com email_address: mmuster@example.com
@ -111,87 +111,87 @@ ccm_core.users:
password_reset_required: false password_reset_required: false
ccm_core.ccm_roles: ccm_core.ccm_roles:
- role_id: -4000 - role_id: 4000
uuid: cb07e4f7-9a77-41e8-af1a-eed318aed596 uuid: cb07e4f7-9a77-41e8-af1a-eed318aed596
name: domain_test_category_manager name: domain_test_category_manager
- role_id: -4100 - role_id: 4100
uuid: e9d4bb0a-7218-4ecb-a759-d1623b2d5c00 uuid: e9d4bb0a-7218-4ecb-a759-d1623b2d5c00
name: category_foo_manager name: category_foo_manager
ccm_core.role_memberships: ccm_core.role_memberships:
- membership_id: -5000 - membership_id: 5000
uuid: a62fab65-94e0-463b-8d51-6f7585e2417c uuid: a62fab65-94e0-463b-8d51-6f7585e2417c
role_id: -4000 role_id: 4000
member_id: -3100 member_id: 3100
- membership_id: 5100 - membership_id: 5100
uuid: 8fb7b7cc-fe04-4986-93de-73132b94e2fa uuid: 8fb7b7cc-fe04-4986-93de-73132b94e2fa
role_id: -4100 role_id: 4100
member_id: -3200 member_id: 3200
ccm_core.permissions: ccm_core.permissions:
- permission_id: -6000 - permission_id: 6000
uuid: 1f9cd01d-b04f-4cb8-83b7-502a53b442c9 uuid: 1f9cd01d-b04f-4cb8-83b7-502a53b442c9
granted_privilege: manage_category granted_privilege: manage_category
grantee_id: -4000 grantee_id: 4000
object_id: -2000 object_id: 2000
inherited: false inherited: false
- permission_id: -6010 - permission_id: 6010
uuid: 964ab653-eadf-4c69-b4cb-d90e9834bb81 uuid: 964ab653-eadf-4c69-b4cb-d90e9834bb81
granted_privilege: manage_category granted_privilege: manage_category
grantee_id: -4000 grantee_id: 4000
object_id: -2100 object_id: 2100
inherited: true inherited: true
inherited_from_id: -2000 inherited_from_id: 2000
- permission_id: -6020 - permission_id: 6020
uuid: c44261af-6522-418d-b7c5-ae3b3dcb02a3 uuid: c44261af-6522-418d-b7c5-ae3b3dcb02a3
granted_privilege: manage_category granted_privilege: manage_category
grantee_id: -4000 grantee_id: 4000
object_id: -2200 object_id: 2200
inherited: true inherited: true
inherited_from_id: -2000 inherited_from_id: 2000
- permission_id: -6100 - permission_id: 6100
uuid: 8aa98e4d-6fa9-411b-bcb0-3e51bba63a5b uuid: 8aa98e4d-6fa9-411b-bcb0-3e51bba63a5b
granted_privilege: manage_category_objects granted_privilege: manage_category_objects
grantee_id: -4000 grantee_id: 4000
object_id: -2000 object_id: 2000
inherited: false inherited: false
- permission_id: -6110 - permission_id: 6110
uuid: 89fe50b0-6f59-4dfd-8520-f9059ad9d629 uuid: 89fe50b0-6f59-4dfd-8520-f9059ad9d629
granted_privilege: manage_category_objects granted_privilege: manage_category_objects
grantee_id: -4000 grantee_id: 4000
object_id: -2100 object_id: 2100
inherited: true inherited: true
inherited_from_id: -2000 inherited_from_id: 2000
- permission_id: -6120 - permission_id: 6120
uuid: 052ea99f-a0de-4d8b-aebd-69ad9680f921 uuid: 052ea99f-a0de-4d8b-aebd-69ad9680f921
granted_privilege: manage_category_objects granted_privilege: manage_category_objects
grantee_id: -4000 grantee_id: 4000
object_id: -2200 object_id: 2200
inherited: true inherited: true
inherited_from_id: -2000 inherited_from_id: 2000
- permission_id: -6200 - permission_id: 6200
uuid: daf465e7-bfb3-4847-a5f8-2c985f20cbb8 uuid: daf465e7-bfb3-4847-a5f8-2c985f20cbb8
granted_privilege: manage_category granted_privilege: manage_category
grantee_id: -4100 grantee_id: 4100
object_id: -2100 object_id: 2100
inherited: false inherited: false
- permission_id: -6210 - permission_id: 6210
uuid: 23424b24-fa6f-4e2c-86f6-6c10c4342dd7 uuid: 23424b24-fa6f-4e2c-86f6-6c10c4342dd7
granted_privilege: manage_category granted_privilege: manage_category
grantee_id: -4100 grantee_id: 4100
object_id: -2200 object_id: 2200
inherited: true inherited: true
inherited_from_id: -2100 inherited_from_id: 2100
- permission_id: -6300 - permission_id: 6300
uuid: 1b58b9ab-7c8a-402f-9fe5-d5f4af8dfa00 uuid: 1b58b9ab-7c8a-402f-9fe5-d5f4af8dfa00
granted_privilege: manage_category_objects granted_privilege: manage_category_objects
grantee_id: -4100 grantee_id: 4100
object_id: -2100 object_id: 2100
inherited: false inherited: false
- permission_id: -6310 - permission_id: 6310
uuid: 9aafe40c-ce25-4344-bc3f-144a0457191a uuid: 9aafe40c-ce25-4344-bc3f-144a0457191a
granted_privilege: manage_category_objects granted_privilege: manage_category_objects
grantee_id: -4100 grantee_id: 4100
object_id: -2200 object_id: 2200
inherited: true inherited: true
inherited_from_id: -2100 inherited_from_id: 2100

View File

@ -1,45 +1,45 @@
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -1000 - object_id: 1000
display_name: test display_name: test
uuid: d76c9183-5558-4ca6-bd56-3cdd8bdadad6 uuid: d76c9183-5558-4ca6-bd56-3cdd8bdadad6
- object_id: -2000 - object_id: 2000
display_name: test_root display_name: test_root
uuid: 1d533dba-08f2-4d65-948a-3bba953dabab uuid: 1d533dba-08f2-4d65-948a-3bba953dabab
- object_id: -2100 - object_id: 2100
display_name: foo display_name: foo
uuid: a83d238a-1df7-4b54-a886-a93f4e816888 uuid: a83d238a-1df7-4b54-a886-a93f4e816888
- object_id: -2200 - object_id: 2200
display_name: bar display_name: bar
uuid: 7fd42bcd-c49f-4d8a-be1c-fd88f2e9a7c0 uuid: 7fd42bcd-c49f-4d8a-be1c-fd88f2e9a7c0
- object_id: -2300 - object_id: 2300
display_name: new-category display_name: new-category
uuid: dfe81433-de5c-47f2-aaf6-5013636211ee uuid: dfe81433-de5c-47f2-aaf6-5013636211ee
ccm_core.categories: ccm_core.categories:
- object_id: -2000 - object_id: 2000
unique_id: test0001 unique_id: test0001
name: test-root name: test-root
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2100 - object_id: 2100
unique_id: test0002 unique_id: test0002
name: foo name: foo
parent_category_id: -2000 parent_category_id: 2000
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2200 - object_id: 2200
unique_id: test0003 unique_id: test0003
name: bar name: bar
parent_category_id: -2100 parent_category_id: 2100
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2300 - object_id: 2300
unique_id: new0001 unique_id: new0001
name: new-category name: new-category
enabled: true enabled: true
@ -48,25 +48,25 @@ ccm_core.categories:
category_order: 0 category_order: 0
ccm_core.category_domains: ccm_core.category_domains:
- object_id: -1000 - object_id: 1000
domain_key: test domain_key: test
root_category_id: -2000 root_category_id: 2000
uri: http://libreccm.org/test uri: http://libreccm.org/test
version: 1.0 version: 1.0
ccm_core.parties: ccm_core.parties:
- party_id: -100 - party_id: 100
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: public-user name: public-user
- party_id: -200 - party_id: 200
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: jdoe name: jdoe
- party_id: -300 - party_id: 300
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: mmuster name: mmuster
ccm_core.users: ccm_core.users:
- party_id: -100 - party_id: 100
given_name: public given_name: public
family_name: user family_name: user
email_address: public-user@localhost email_address: public-user@localhost
@ -74,7 +74,7 @@ ccm_core.users:
bouncing: false bouncing: false
verified: true verified: true
password_reset_required: false password_reset_required: false
- party_id: -200 - party_id: 200
given_name: John given_name: John
family_name: Doe family_name: Doe
email_address: john.doe@example.org email_address: john.doe@example.org
@ -83,7 +83,7 @@ ccm_core.users:
bouncing: false bouncing: false
verified: true verified: true
password_reset_required: false password_reset_required: false
- party_id: -300 - party_id: 300
given_name: Max given_name: Max
family_name: Mustermann family_name: Mustermann
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
@ -94,33 +94,33 @@ ccm_core.users:
password_reset_required: false password_reset_required: false
ccm_core.ccm_roles: ccm_core.ccm_roles:
- role_id: -500 - role_id: 500
uuid: 420f5f60-18a6-4dbe-9160-c730bbe18f45 uuid: 420f5f60-18a6-4dbe-9160-c730bbe18f45
name: category_manager name: category_manager
- role_id: -510 - role_id: 510
uuid: 0aeea94d-3d8e-4a50-807b-e3c857038e22 uuid: 0aeea94d-3d8e-4a50-807b-e3c857038e22
name: category_manager_domain_test name: category_manager_domain_test
ccm_core.role_memberships: ccm_core.role_memberships:
- membership_id: -600 - membership_id: 600
uuid: 59bfad40-2bd1-4ddd-91cf-60c51724e29c uuid: 59bfad40-2bd1-4ddd-91cf-60c51724e29c
role_id: -500 role_id: 500
member_id: -200 member_id: 200
- membership_id: -610 - membership_id: 610
uuid: 192024a9-0489-44a0-940f-725b5579a52d uuid: 192024a9-0489-44a0-940f-725b5579a52d
role_id: -510 role_id: 510
member_id: -300 member_id: 300
ccm_core.permissions: ccm_core.permissions:
- permission_id: -700 - permission_id: 700
uuid: 70e8b64c-505d-48bd-b196-36c10ed2321a uuid: 70e8b64c-505d-48bd-b196-36c10ed2321a
granted_privilege: manage_category granted_privilege: manage_category
grantee_id: -500 grantee_id: 500
inherited: false inherited: false
- permission_id: -710 - permission_id: 710
uuid: 1a798119-a4a4-477b-8092-4423d7185e1b uuid: 1a798119-a4a4-477b-8092-4423d7185e1b
granted_privilege: manage_category granted_privilege: manage_category
grantee_id: -510 grantee_id: 510
object_id: -1000 object_id: 1000
inherited: false inherited: false

View File

@ -1,62 +1,62 @@
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -1000 - object_id: 1000
display_name: test display_name: test
uuid: d76c9183-5558-4ca6-bd56-3cdd8bdadad6 uuid: d76c9183-5558-4ca6-bd56-3cdd8bdadad6
- object_id: -2000 - object_id: 2000
display_name: test_root display_name: test_root
uuid: 1d533dba-08f2-4d65-948a-3bba953dabab uuid: 1d533dba-08f2-4d65-948a-3bba953dabab
- object_id: -2100 - object_id: 2100
display_name: foo display_name: foo
uuid: a83d238a-1df7-4b54-a886-a93f4e816888 uuid: a83d238a-1df7-4b54-a886-a93f4e816888
- object_id: -2200 - object_id: 2200
display_name: bar display_name: bar
uuid: 7fd42bcd-c49f-4d8a-be1c-fd88f2e9a7c0 uuid: 7fd42bcd-c49f-4d8a-be1c-fd88f2e9a7c0
ccm_core.categories: ccm_core.categories:
- object_id: -2000 - object_id: 2000
unique_id: test0001 unique_id: test0001
name: test-root name: test-root
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2100 - object_id: 2100
unique_id: test0002 unique_id: test0002
name: foo name: foo
parent_category_id: -2000 parent_category_id: 2000
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
- object_id: -2200 - object_id: 2200
unique_id: test0003 unique_id: test0003
name: bar name: bar
parent_category_id: -2100 parent_category_id: 2100
enabled: true enabled: true
visible: true visible: true
abstract_category: false abstract_category: false
category_order: 0 category_order: 0
ccm_core.category_domains: ccm_core.category_domains:
- object_id: -1000 - object_id: 1000
domain_key: test domain_key: test
root_category_id: -2000 root_category_id: 2000
uri: http://libreccm.org/test uri: http://libreccm.org/test
version: 1.0 version: 1.0
ccm_core.parties: ccm_core.parties:
- party_id: -100 - party_id: 100
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: public-user name: public-user
- party_id: -200 - party_id: 200
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: jdoe name: jdoe
- party_id: -300 - party_id: 300
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: mmuster name: mmuster
ccm_core.users: ccm_core.users:
- party_id: -100 - party_id: 100
given_name: public given_name: public
family_name: user family_name: user
email_address: public-user@localhost email_address: public-user@localhost
@ -64,7 +64,7 @@ ccm_core.users:
bouncing: false bouncing: false
verified: true verified: true
password_reset_required: false password_reset_required: false
- party_id: -200 - party_id: 200
given_name: John given_name: John
family_name: Doe family_name: Doe
email_address: john.doe@example.org email_address: john.doe@example.org
@ -73,7 +73,7 @@ ccm_core.users:
bouncing: false bouncing: false
verified: true verified: true
password_reset_required: false password_reset_required: false
- party_id: -300 - party_id: 300
given_name: Max given_name: Max
family_name: Mustermann family_name: Mustermann
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
@ -84,32 +84,32 @@ ccm_core.users:
password_reset_required: false password_reset_required: false
ccm_core.ccm_roles: ccm_core.ccm_roles:
- role_id: -500 - role_id: 500
uuid: 420f5f60-18a6-4dbe-9160-c730bbe18f45 uuid: 420f5f60-18a6-4dbe-9160-c730bbe18f45
name: category_manager name: category_manager
- role_id: -510 - role_id: 510
uuid: 0aeea94d-3d8e-4a50-807b-e3c857038e22 uuid: 0aeea94d-3d8e-4a50-807b-e3c857038e22
name: category_manager_domain_test name: category_manager_domain_test
ccm_core.role_memberships: ccm_core.role_memberships:
- membership_id: -600 - membership_id: 600
uuid: 59bfad40-2bd1-4ddd-91cf-60c51724e29c uuid: 59bfad40-2bd1-4ddd-91cf-60c51724e29c
role_id: -500 role_id: 500
member_id: -200 member_id: 200
- membership_id: -610 - membership_id: 610
uuid: 192024a9-0489-44a0-940f-725b5579a52d uuid: 192024a9-0489-44a0-940f-725b5579a52d
role_id: -510 role_id: 510
member_id: -300 member_id: 300
ccm_core.permissions: ccm_core.permissions:
- permission_id: -700 - permission_id: 700
uuid: 70e8b64c-505d-48bd-b196-36c10ed2321a uuid: 70e8b64c-505d-48bd-b196-36c10ed2321a
granted_privilege: manage_category granted_privilege: manage_category
grantee_id: -500 grantee_id: 500
inherited: false inherited: false
- permission_id: -710 - permission_id: 710
uuid: 1a798119-a4a4-477b-8092-4423d7185e1b uuid: 1a798119-a4a4-477b-8092-4423d7185e1b
granted_privilege: manage_category granted_privilege: manage_category
grantee_id: -510 grantee_id: 510
object_id: -1000 object_id: 1000
inherited: false inherited: false

View File

@ -1,38 +1,38 @@
ccm_core.settings: ccm_core.settings:
- setting_id: -3100 - setting_id: 3100
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: price name: price
dtype: BigDecimalSetting dtype: BigDecimalSetting
setting_value_big_decimal: 109.99 setting_value_big_decimal: 109.99
- setting_id: -3200 - setting_id: 3200
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: enabled name: enabled
dtype: BooleanSetting dtype: BooleanSetting
setting_value_boolean: true setting_value_boolean: true
- setting_id: -3300 - setting_id: 3300
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: minTemperature name: minTemperature
dtype: DoubleSetting dtype: DoubleSetting
setting_value_double: 23.5 setting_value_double: 23.5
- setting_id: -3400 - setting_id: 3400
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: itemsPerPage name: itemsPerPage
dtype: LongSetting dtype: LongSetting
setting_value_long: 30 setting_value_long: 30
- setting_id: -3500 - setting_id: 3500
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: helpUrl name: helpUrl
dtype: StringSetting dtype: StringSetting
setting_value_string: http://www.example.org setting_value_string: http://www.example.org
- setting_id: -3600 - setting_id: 3600
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: languages name: languages
dtype: EnumSetting dtype: EnumSetting
ccm_core.settings_enum_values: ccm_core.settings_enum_values:
- enum_id: -3600 - enum_id: 3600
value: de value: de
- enum_id: -3600 - enum_id: 3600
value: en value: en
- enum_id: -3600 - enum_id: 3600
value: es value: es

View File

@ -1,46 +1,46 @@
ccm_core.settings: ccm_core.settings:
- setting_id: -3100 - setting_id: 3100
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: price name: price
dtype: BigDecimalSetting dtype: BigDecimalSetting
setting_value_big_decimal: 98.99 setting_value_big_decimal: 98.99
- setting_id: -3200 - setting_id: 3200
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: enabled name: enabled
dtype: BooleanSetting dtype: BooleanSetting
setting_value_boolean: true setting_value_boolean: true
- setting_id: -3300 - setting_id: 3300
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: minTemperature name: minTemperature
dtype: DoubleSetting dtype: DoubleSetting
setting_value_double: 23.5 setting_value_double: 23.5
- setting_id: -3400 - setting_id: 3400
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: itemsPerPage name: itemsPerPage
dtype: LongSetting dtype: LongSetting
setting_value_long: 20 setting_value_long: 20
- setting_id: -3500 - setting_id: 3500
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: helpUrl name: helpUrl
dtype: StringSetting dtype: StringSetting
setting_value_string: http://www.example.org setting_value_string: http://www.example.org
- setting_id: -3600 - setting_id: 3600
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: languages name: languages
dtype: EnumSetting dtype: EnumSetting
- setting_id: -4000 - setting_id: 4000
configuration_class: com.example.TestConfiguration configuration_class: com.example.TestConfiguration
name: enabled name: enabled
dtype: BooleanSetting dtype: BooleanSetting
setting_value_boolean: false setting_value_boolean: false
- setting_id: -4100 - setting_id: 4100
configuration_class: com.example.TestConfiguration configuration_class: com.example.TestConfiguration
name: itemsPerPage name: itemsPerPage
dtype: LongSetting dtype: LongSetting
setting_value_long: 40 setting_value_long: 40
ccm_core.settings_enum_values: ccm_core.settings_enum_values:
- enum_id: -3600 - enum_id: 3600
value: de value: de
- enum_id: -3600 - enum_id: 3600
value: en value: en

View File

@ -1,36 +1,36 @@
ccm_core.settings: ccm_core.settings:
- setting_id: -3100 - setting_id: 3100
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: price name: price
dtype: BigDecimalSetting dtype: BigDecimalSetting
setting_value_big_decimal: 98.99 setting_value_big_decimal: 98.99
- setting_id: -3200 - setting_id: 3200
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: enabled name: enabled
dtype: BooleanSetting dtype: BooleanSetting
setting_value_boolean: true setting_value_boolean: true
- setting_id: -3300 - setting_id: 3300
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: minTemperature name: minTemperature
dtype: DoubleSetting dtype: DoubleSetting
setting_value_double: 23.5 setting_value_double: 23.5
- setting_id: -3400 - setting_id: 3400
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: itemsPerPage name: itemsPerPage
dtype: LongSetting dtype: LongSetting
setting_value_long: 20 setting_value_long: 20
- setting_id: -3500 - setting_id: 3500
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: helpUrl name: helpUrl
dtype: StringSetting dtype: StringSetting
setting_value_string: http://www.example.org setting_value_string: http://www.example.org
- setting_id: -3600 - setting_id: 3600
configuration_class: org.libreccm.configuration.TestExampleConfiguration configuration_class: org.libreccm.configuration.TestExampleConfiguration
name: languages name: languages
dtype: EnumSetting dtype: EnumSetting
ccm_core.settings_enum_values: ccm_core.settings_enum_values:
- enum_id: -3600 - enum_id: 3600
value: de value: de
- enum_id: -3600 - enum_id: 3600
value: en value: en

View File

@ -2,12 +2,12 @@
"ccm_core.ccm_objects": "ccm_core.ccm_objects":
[ [
{ {
"object_id": -10, "object_id": 10,
"display_name": "Test Object 1", "display_name": "Test Object 1",
"uuid": "14c5303e-19b7-4710-939d-7e7d5eeef155" "uuid": "14c5303e-19b7-4710-939d-7e7d5eeef155"
}, },
{ {
"object_id": -30, "object_id": 30,
"display_name": "Test Object 3", "display_name": "Test Object 3",
"uuid": "6ad52a5f-31a1-4686-affc-c36741e7e949" "uuid": "6ad52a5f-31a1-4686-affc-c36741e7e949"
} }

View File

@ -1,7 +1,7 @@
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -10 - object_id: 10
display_name: Test Object 1 display_name: Test Object 1
uuid: 14c5303e-19b7-4710-939d-7e7d5eeef155 uuid: 14c5303e-19b7-4710-939d-7e7d5eeef155
- object_id: -30 - object_id: 30
display_name: Test Object 3 display_name: Test Object 3
uuid: 6ad52a5f-31a1-4686-affc-c36741e7e949 uuid: 6ad52a5f-31a1-4686-affc-c36741e7e949

View File

@ -2,17 +2,17 @@
"ccm_core.ccm_objects": "ccm_core.ccm_objects":
[ [
{ {
"object_id": -10, "object_id": 10,
"display_name": "Test Object 1", "display_name": "Test Object 1",
"uuid": "14c5303e-19b7-4710-939d-7e7d5eeef155" "uuid": "14c5303e-19b7-4710-939d-7e7d5eeef155"
}, },
{ {
"object_id": -20, "object_id": 20,
"display_name": "Second Test Object", "display_name": "Second Test Object",
"uuid": "921bc481-cd82-4138-9791-6df2cfbbebde" "uuid": "921bc481-cd82-4138-9791-6df2cfbbebde"
}, },
{ {
"object_id": -30, "object_id": 30,
"display_name": "Test Object 3", "display_name": "Test Object 3",
"uuid": "6ad52a5f-31a1-4686-affc-c36741e7e949" "uuid": "6ad52a5f-31a1-4686-affc-c36741e7e949"
} }

View File

@ -1,10 +1,10 @@
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -10 - object_id: 10
display_name: Test Object 1 display_name: Test Object 1
uuid: 14c5303e-19b7-4710-939d-7e7d5eeef155 uuid: 14c5303e-19b7-4710-939d-7e7d5eeef155
- object_id: -20 - object_id: 20
display_name: Second Test Object display_name: Second Test Object
uuid: 921bc481-cd82-4138-9791-6df2cfbbebde uuid: 921bc481-cd82-4138-9791-6df2cfbbebde
- object_id: -30 - object_id: 30
display_name: Test Object 3 display_name: Test Object 3
uuid: 6ad52a5f-31a1-4686-affc-c36741e7e949 uuid: 6ad52a5f-31a1-4686-affc-c36741e7e949

View File

@ -2,22 +2,22 @@
"ccm_core.ccm_objects": "ccm_core.ccm_objects":
[ [
{ {
"object_id": -10, "object_id": 10,
"display_name": "Test Object 1", "display_name": "Test Object 1",
"uuid": "14c5303e-19b7-4710-939d-7e7d5eeef155" "uuid": "14c5303e-19b7-4710-939d-7e7d5eeef155"
}, },
{ {
"object_id": -20, "object_id": 20,
"display_name": "Test Object 2", "display_name": "Test Object 2",
"uuid": "921bc481-cd82-4138-9791-6df2cfbbebde" "uuid": "921bc481-cd82-4138-9791-6df2cfbbebde"
}, },
{ {
"object_id": -30, "object_id": 30,
"display_name": "Test Object 3", "display_name": "Test Object 3",
"uuid": "6ad52a5f-31a1-4686-affc-c36741e7e949" "uuid": "6ad52a5f-31a1-4686-affc-c36741e7e949"
}, },
{ {
"object_id": -40, "object_id": 40,
"display_name": "Test Object 4", "display_name": "Test Object 4",
"uuid": "a82338aa-a73f-41d2-bf8c-10bedb405a72" "uuid": "a82338aa-a73f-41d2-bf8c-10bedb405a72"
} }

View File

@ -1,13 +1,13 @@
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -10 - object_id: 10
display_name: Test Object 1 display_name: Test Object 1
uuid: 14c5303e-19b7-4710-939d-7e7d5eeef155 uuid: 14c5303e-19b7-4710-939d-7e7d5eeef155
- object_id: -20 - object_id: 20
display_name: Test Object 2 display_name: Test Object 2
uuid: 921bc481-cd82-4138-9791-6df2cfbbebde uuid: 921bc481-cd82-4138-9791-6df2cfbbebde
- object_id: -30 - object_id: 30
display_name: Test Object 3 display_name: Test Object 3
uuid: 6ad52a5f-31a1-4686-affc-c36741e7e949 uuid: 6ad52a5f-31a1-4686-affc-c36741e7e949
- object_id: -40 - object_id: 40
display_name: Test Object 4 display_name: Test Object 4
uuid: a82338aa-a73f-41d2-bf8c-10bedb405a72 uuid: a82338aa-a73f-41d2-bf8c-10bedb405a72

View File

@ -2,17 +2,17 @@
"ccm_core.ccm_objects": "ccm_core.ccm_objects":
[ [
{ {
"object_id": -10, "object_id": 10,
"display_name": "Test Object 1", "display_name": "Test Object 1",
"uuid": "14c5303e-19b7-4710-939d-7e7d5eeef155" "uuid": "14c5303e-19b7-4710-939d-7e7d5eeef155"
}, },
{ {
"object_id": -20, "object_id": 20,
"display_name": "Test Object 2", "display_name": "Test Object 2",
"uuid": "921bc481-cd82-4138-9791-6df2cfbbebde" "uuid": "921bc481-cd82-4138-9791-6df2cfbbebde"
}, },
{ {
"object_id": -30, "object_id": 30,
"display_name": "Test Object 3", "display_name": "Test Object 3",
"uuid": "6ad52a5f-31a1-4686-affc-c36741e7e949" "uuid": "6ad52a5f-31a1-4686-affc-c36741e7e949"
} }

View File

@ -1,10 +1,10 @@
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -10 - object_id: 10
display_name: Test Object 1 display_name: Test Object 1
uuid: 14c5303e-19b7-4710-939d-7e7d5eeef155 uuid: 14c5303e-19b7-4710-939d-7e7d5eeef155
- object_id: -20 - object_id: 20
display_name: Test Object 2 display_name: Test Object 2
uuid: 921bc481-cd82-4138-9791-6df2cfbbebde uuid: 921bc481-cd82-4138-9791-6df2cfbbebde
- object_id: -30 - object_id: 30
display_name: Test Object 3 display_name: Test Object 3
uuid: 6ad52a5f-31a1-4686-affc-c36741e7e949 uuid: 6ad52a5f-31a1-4686-affc-c36741e7e949

View File

@ -2,16 +2,16 @@
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -25,28 +25,28 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
} }
], ],
"ccm_core.ccm_groups": "ccm_core.ccm_groups":
[ [
{ {
"name": "admins", "name": "admins",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "users", "name": "users",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -40 "subject_id": 40
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
@ -55,19 +55,19 @@
"ccm_core.group_memberships": "ccm_core.group_memberships":
[ [
{ {
"membership_id": -10, "membership_id": 10,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -20, "membership_id": 20,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -30, "membership_id": 30,
"group_subject_id": -20, "group_subject_id": 20,
"user_subject_id": -10 "user_subject_id": 10
} }
] ]
} }

View File

@ -1,9 +1,9 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -13,26 +13,26 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
ccm_core.ccm_groups: ccm_core.ccm_groups:
- name: admins - name: admins
subject_id: -20 subject_id: 20
- name: users - name: users
subject_id: -30 subject_id: 30
- name: authors - name: authors
subject_id: -40 subject_id: 40
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -10 - membership_id: 10
group_subject_id: -30 group_subject_id: 30
user_subject_id: -10 user_subject_id: 10
- membership_id: -20 - membership_id: 20
group_subject_id: -40 group_subject_id: 40
user_subject_id: -10 user_subject_id: 10
- membership_id: -30 - membership_id: 30
group_subject_id: -20 group_subject_id: 20
user_subject_id: -10 user_subject_id: 10

View File

@ -2,16 +2,16 @@
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -25,28 +25,28 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
} }
], ],
"ccm_core.ccm_groups": "ccm_core.ccm_groups":
[ [
{ {
"name": "admins", "name": "admins",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "users", "name": "users",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -40 "subject_id": 40
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
@ -55,9 +55,9 @@
"ccm_core.group_memberships": "ccm_core.group_memberships":
[ [
{ {
"membership_id": -10, "membership_id": 10,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -10 "user_subject_id": 10
} }
] ]
} }

View File

@ -1,9 +1,9 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -13,20 +13,20 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
ccm_core.ccm_groups: ccm_core.ccm_groups:
- name: admins - name: admins
subject_id: -20 subject_id: 20
- name: users - name: users
subject_id: -30 subject_id: 30
- name: authors - name: authors
subject_id: -40 subject_id: 40
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -10 - membership_id: 10
group_subject_id: -30 group_subject_id: 30
user_subject_id: -10 user_subject_id: 10

View File

@ -2,16 +2,16 @@
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -25,28 +25,28 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
} }
], ],
"ccm_core.ccm_groups": "ccm_core.ccm_groups":
[ [
{ {
"name": "admins", "name": "admins",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "users", "name": "users",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -40 "subject_id": 40
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
@ -55,14 +55,14 @@
"ccm_core.group_memberships": "ccm_core.group_memberships":
[ [
{ {
"membership_id": -10, "membership_id": 10,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -20, "membership_id": 20,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -10 "user_subject_id": 10
} }
] ]
} }

View File

@ -1,9 +1,9 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -13,23 +13,23 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
ccm_core.ccm_groups: ccm_core.ccm_groups:
- name: admins - name: admins
subject_id: -20 subject_id: 20
- name: users - name: users
subject_id: -30 subject_id: 30
- name: authors - name: authors
subject_id: -40 subject_id: 40
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -10 - membership_id: 10
group_subject_id: -30 group_subject_id: 30
user_subject_id: -10 user_subject_id: 10
- membership_id: -20 - membership_id: 20
group_subject_id: -40 group_subject_id: 40
user_subject_id: -10 user_subject_id: 10

View File

@ -2,21 +2,21 @@
"ccm_core.subjects": "ccm_core.subjects":
[ [
{ {
"subject_id": -10 "subject_id": 10
}, },
{ {
"subject_id": -30 "subject_id": 30
} }
], ],
"ccm_core.ccm_groups": "ccm_core.ccm_groups":
[ [
{ {
"name": "admins", "name": "admins",
"subject_id": -10 "subject_id": 10
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -30 "subject_id": 30
} }
] ]
} }

View File

@ -1,9 +1,9 @@
--- ---
ccm_core.subjects: ccm_core.subjects:
- subject_id: -10 - subject_id: 10
- subject_id: -30 - subject_id: 30
ccm_core.ccm_groups: ccm_core.ccm_groups:
- name: admins - name: admins
subject_id: -10 subject_id: 10
- name: authors - name: authors
subject_id: -30 subject_id: 30

View File

@ -2,28 +2,28 @@
"ccm_core.subjects": "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": "ccm_core.ccm_groups":
[ [
{ {
"name": "admins", "name": "admins",
"subject_id": -10 "subject_id": 10
}, },
{ {
"name": "users", "name": "users",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "editors", "name": "editors",
"subject_id": -30 "subject_id": 30
} }
] ]
} }

View File

@ -1,12 +1,12 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_groups:
- name: admins - name: admins
subject_id: -10 subject_id: 10
- name: users - name: users
subject_id: -20 subject_id: 20
- name: editors - name: editors
subject_id: -30 subject_id: 30

View File

@ -2,35 +2,35 @@
"ccm_core.subjects": "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": "ccm_core.ccm_groups":
[ [
{ {
"name": "admins", "name": "admins",
"subject_id": -10 "subject_id": 10
}, },
{ {
"name": "users", "name": "users",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "publishers", "name": "publishers",
"subject_id": -40 "subject_id": 40
} }
] ]
} }

View File

@ -1,15 +1,15 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_groups:
- name: admins - name: admins
subject_id: -10 subject_id: 10
- name: users - name: users
subject_id: -20 subject_id: 20
- name: authors - name: authors
subject_id: -30 subject_id: 30
- name: publishers - name: publishers
subject_id: -40 subject_id: 40

View File

@ -2,28 +2,28 @@
"ccm_core.subjects": "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": "ccm_core.ccm_groups":
[ [
{ {
"name": "admins", "name": "admins",
"subject_id": -10 "subject_id": 10
}, },
{ {
"name": "users", "name": "users",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -30 "subject_id": 30
} }
] ]
} }

View File

@ -1,12 +1,12 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_groups:
- name: admins - name: admins
subject_id: -10 subject_id: 10
- name: users - name: users
subject_id: -20 subject_id: 20
- name: authors - name: authors
subject_id: -30 subject_id: 30

View File

@ -2,72 +2,72 @@
"ccm_core.ccm_objects": "ccm_core.ccm_objects":
[ [
{ {
"object_id": -10, "object_id": 10,
"display_name": "Test Object 1" "display_name": "Test Object 1"
}, },
{ {
"object_id": -20, "object_id": 20,
"display_name": "Test Object 2" "display_name": "Test Object 2"
}, },
{ {
"object_id": -30, "object_id": 30,
"display_name": "Test Object 3" "display_name": "Test Object 3"
}, },
{ {
"object_id": -40, "object_id": 40,
"display_name": "Test Object 4" "display_name": "Test Object 4"
}, },
{ {
"object_id": -50, "object_id": 50,
"display_name": "Test Object 5" "display_name": "Test Object 5"
}, },
{ {
"object_id": -60, "object_id": 60,
"display_name": "Test Object 6" "display_name": "Test Object 6"
}, },
{ {
"object_id": -70, "object_id": 70,
"display_name": "Test Object 7" "display_name": "Test Object 7"
}, },
{ {
"object_id": -80, "object_id": 80,
"display_name": "Test Object 8" "display_name": "Test Object 8"
} }
], ],
"ccm_core.ccm_privileges": "ccm_core.ccm_privileges":
[ [
{ {
"privilege_id": -10, "privilege_id": 10,
"label": "admin" "label": "admin"
}, },
{ {
"privilege_id": -20, "privilege_id": 20,
"label": "read" "label": "read"
}, },
{ {
"privilege_id": -30, "privilege_id": 30,
"label": "write" "label": "write"
} }
], ],
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -81,7 +81,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "webmaster", "screen_name": "webmaster",
"subject_id": -1 "subject_id": 1
}, },
{ {
"banned": false, "banned": false,
@ -92,7 +92,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "public-user", "screen_name": "public-user",
"subject_id": -2 "subject_id": 2
}, },
{ {
"banned": false, "banned": false,
@ -103,7 +103,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -114,58 +114,58 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fjiajhigafgapoa", "salt": "fjiajhigafgapoa",
"screen_name": "mmuster", "screen_name": "mmuster",
"subject_id": -50 "subject_id": 50
} }
], ],
"ccm_core.ccm_groups": "ccm_core.ccm_groups":
[ [
{ {
"name": "users", "name": "users",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -40 "subject_id": 40
} }
], ],
"ccm_core.group_memberships": "ccm_core.group_memberships":
[ [
{ {
"membership_id": -10, "membership_id": 10,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -20, "membership_id": 20,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -50 "user_subject_id": 50
}, },
{ {
"membership_id": -30, "membership_id": 30,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -2 "user_subject_id": 2
}, },
{ {
"membership_id": -40, "membership_id": 40,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -50, "membership_id": 50,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -50 "user_subject_id": 50
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -50, "user_id": 50,
"email_address": "max.mustermann@example.com", "email_address": "max.mustermann@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
@ -174,146 +174,146 @@
"ccm_core.permissions": "ccm_core.permissions":
[ [
{ {
"permission_id": -10, "permission_id": 10,
"grantee_id": -1, "grantee_id": 1,
"granted_privilege_id": -10 "granted_privilege_id": 10
}, },
{ {
"permission_id": -20, "permission_id": 20,
"grantee_id": -2, "grantee_id": 2,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -30, "permission_id": 30,
"grantee_id": -10, "grantee_id": 10,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -40, "permission_id": 40,
"grantee_id": -50, "grantee_id": 50,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -50, "permission_id": 50,
"grantee_id": -50, "grantee_id": 50,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -60, "permission_id": 60,
"grantee_id": -50, "grantee_id": 50,
"object_id": -60, "object_id": 60,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -80, "permission_id": 80,
"grantee_id": -30, "grantee_id": 30,
"object_id": -10, "object_id": 10,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -90, "permission_id": 90,
"grantee_id": -30, "grantee_id": 30,
"object_id": -20, "object_id": 20,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -100, "permission_id": 100,
"grantee_id": -30, "grantee_id": 30,
"object_id": -30, "object_id": 30,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -110, "permission_id": 110,
"grantee_id": -30, "grantee_id": 30,
"object_id": -40, "object_id": 40,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -120, "permission_id": 120,
"grantee_id": -30, "grantee_id": 30,
"object_id": -80, "object_id": 80,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -130, "permission_id": 130,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10, "object_id": 10,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -140, "permission_id": 140,
"grantee_id": -40, "grantee_id": 40,
"object_id": -20, "object_id": 20,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -150, "permission_id": 150,
"grantee_id": -40, "grantee_id": 40,
"object_id": -30, "object_id": 30,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -160, "permission_id": 160,
"grantee_id": -40, "grantee_id": 40,
"object_id": -40, "object_id": 40,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -170, "permission_id": 170,
"grantee_id": -40, "grantee_id": 40,
"object_id": -80, "object_id": 80,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -180, "permission_id": 180,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10, "object_id": 10,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -190, "permission_id": 190,
"grantee_id": -40, "grantee_id": 40,
"object_id": -20, "object_id": 20,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -200, "permission_id": 200,
"grantee_id": -40, "grantee_id": 40,
"object_id": -30, "object_id": 30,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -220, "permission_id": 220,
"grantee_id": -40, "grantee_id": 40,
"object_id": -40, "object_id": 40,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -230, "permission_id": 230,
"grantee_id": -40, "grantee_id": 40,
"object_id": -80, "object_id": 80,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -250, "permission_id": 250,
"grantee_id": -50, "grantee_id": 50,
"object_id": -60, "object_id": 60,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -260, "permission_id": 260,
"grantee_id": -50, "grantee_id": 50,
"object_id": -60, "object_id": 60,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -270, "permission_id": 270,
"grantee_id": -10, "grantee_id": 10,
"granted_privilege_id": -20 "granted_privilege_id": 20
} }
] ]
} }

View File

@ -1,35 +1,35 @@
--- ---
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -10 - object_id: 10
display_name: Test Object 1 display_name: Test Object 1
- object_id: -20 - object_id: 20
display_name: Test Object 2 display_name: Test Object 2
- object_id: -30 - object_id: 30
display_name: Test Object 3 display_name: Test Object 3
- object_id: -40 - object_id: 40
display_name: Test Object 4 display_name: Test Object 4
- object_id: -50 - object_id: 50
display_name: Test Object 5 display_name: Test Object 5
- object_id: -60 - object_id: 60
display_name: Test Object 6 display_name: Test Object 6
- object_id: -70 - object_id: 70
display_name: Test Object 7 display_name: Test Object 7
- object_id: -80 - object_id: 80
display_name: Test Object 8 display_name: Test Object 8
ccm_core.ccm_privileges: ccm_core.ccm_privileges:
- privilege_id: -10 - privilege_id: 10
label: admin label: admin
- privilege_id: -20 - privilege_id: 20
label: read label: read
- privilege_id: -30 - privilege_id: 30
label: write label: write
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -39,7 +39,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: webmaster screen_name: webmaster
subject_id: -1 subject_id: 1
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: public-user family_name: public-user
@ -48,7 +48,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: public-user screen_name: public-user
subject_id: -2 subject_id: 2
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Doe family_name: Doe
@ -57,7 +57,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Mustermann family_name: Mustermann
@ -66,129 +66,129 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fjiajhigafgapoa salt: fjiajhigafgapoa
screen_name: mmuster screen_name: mmuster
subject_id: -50 subject_id: 50
ccm_core.ccm_groups: ccm_core.ccm_groups:
- name: users - name: users
subject_id: -30 subject_id: 30
- name: authors - name: authors
subject_id: -40 subject_id: 40
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -10 - membership_id: 10
group_subject_id: -40 group_subject_id: 40
user_subject_id: -10 user_subject_id: 10
- membership_id: -20 - membership_id: 20
group_subject_id: -40 group_subject_id: 40
user_subject_id: -50 user_subject_id: 50
- membership_id: -30 - membership_id: 30
group_subject_id: -30 group_subject_id: 30
user_subject_id: -2 user_subject_id: 2
- membership_id: -40 - membership_id: 40
group_subject_id: -30 group_subject_id: 30
user_subject_id: -10 user_subject_id: 10
- membership_id: -50 - membership_id: 50
group_subject_id: -30 group_subject_id: 30
user_subject_id: -50 user_subject_id: 50
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -50 - user_id: 50
email_address: max.mustermann@example.com email_address: max.mustermann@example.com
bouncing: false bouncing: false
verified: true verified: true
ccm_core.permissions: ccm_core.permissions:
- permission_id: -10 - permission_id: 10
grantee_id: -1 grantee_id: 1
granted_privilege_id: -10 granted_privilege_id: 10
- permission_id: -20 - permission_id: 20
grantee_id: -2 grantee_id: 2
object_id: -50 object_id: 50
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -30 - permission_id: 30
grantee_id: -10 grantee_id: 10
object_id: -50 object_id: 50
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -40 - permission_id: 40
grantee_id: -50 grantee_id: 50
object_id: -50 object_id: 50
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -50 - permission_id: 50
grantee_id: -50 grantee_id: 50
object_id: -50 object_id: 50
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -60 - permission_id: 60
grantee_id: -50 grantee_id: 50
object_id: -60 object_id: 60
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -80 - permission_id: 80
grantee_id: -30 grantee_id: 30
object_id: -10 object_id: 10
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -90 - permission_id: 90
grantee_id: -30 grantee_id: 30
object_id: -20 object_id: 20
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -100 - permission_id: 100
grantee_id: -30 grantee_id: 30
object_id: -30 object_id: 30
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -110 - permission_id: 110
grantee_id: -30 grantee_id: 30
object_id: -40 object_id: 40
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -120 - permission_id: 120
grantee_id: -30 grantee_id: 30
object_id: -80 object_id: 80
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -130 - permission_id: 130
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -140 - permission_id: 140
grantee_id: -40 grantee_id: 40
object_id: -20 object_id: 20
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -150 - permission_id: 150
grantee_id: -40 grantee_id: 40
object_id: -30 object_id: 30
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -160 - permission_id: 160
grantee_id: -40 grantee_id: 40
object_id: -40 object_id: 40
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -170 - permission_id: 170
grantee_id: -40 grantee_id: 40
object_id: -80 object_id: 80
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -180 - permission_id: 180
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -190 - permission_id: 190
grantee_id: -40 grantee_id: 40
object_id: -20 object_id: 20
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -200 - permission_id: 200
grantee_id: -40 grantee_id: 40
object_id: -30 object_id: 30
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -220 - permission_id: 220
grantee_id: -40 grantee_id: 40
object_id: -40 object_id: 40
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -230 - permission_id: 230
grantee_id: -40 grantee_id: 40
object_id: -80 object_id: 80
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -250 - permission_id: 250
grantee_id: -50 grantee_id: 50
object_id: -60 object_id: 60
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -260 - permission_id: 260
grantee_id: -50 grantee_id: 50
object_id: -60 object_id: 60
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -270 - permission_id: 270
grantee_id: -10 grantee_id: 10
granted_privilege_id: -20 granted_privilege_id: 20

View File

@ -2,72 +2,72 @@
"ccm_core.ccm_objects": "ccm_core.ccm_objects":
[ [
{ {
"object_id": -10, "object_id": 10,
"display_name": "Test Object 1" "display_name": "Test Object 1"
}, },
{ {
"object_id": -20, "object_id": 20,
"display_name": "Test Object 2" "display_name": "Test Object 2"
}, },
{ {
"object_id": -30, "object_id": 30,
"display_name": "Test Object 3" "display_name": "Test Object 3"
}, },
{ {
"object_id": -40, "object_id": 40,
"display_name": "Test Object 4" "display_name": "Test Object 4"
}, },
{ {
"object_id": -50, "object_id": 50,
"display_name": "Test Object 5" "display_name": "Test Object 5"
}, },
{ {
"object_id": -60, "object_id": 60,
"display_name": "Test Object 6" "display_name": "Test Object 6"
}, },
{ {
"object_id": -70, "object_id": 70,
"display_name": "Test Object 7" "display_name": "Test Object 7"
}, },
{ {
"object_id": -80, "object_id": 80,
"display_name": "Test Object 8" "display_name": "Test Object 8"
} }
], ],
"ccm_core.ccm_privileges": "ccm_core.ccm_privileges":
[ [
{ {
"privilege_id": -10, "privilege_id": 10,
"label": "admin" "label": "admin"
}, },
{ {
"privilege_id": -20, "privilege_id": 20,
"label": "read" "label": "read"
}, },
{ {
"privilege_id": -30, "privilege_id": 30,
"label": "write" "label": "write"
} }
], ],
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -81,7 +81,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "webmaster", "screen_name": "webmaster",
"subject_id": -1 "subject_id": 1
}, },
{ {
"banned": false, "banned": false,
@ -92,7 +92,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "public-user", "screen_name": "public-user",
"subject_id": -2 "subject_id": 2
}, },
{ {
"banned": false, "banned": false,
@ -103,7 +103,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -114,58 +114,58 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fjiajhigafgapoa", "salt": "fjiajhigafgapoa",
"screen_name": "mmuster", "screen_name": "mmuster",
"subject_id": -50 "subject_id": 50
} }
], ],
"ccm_core.ccm_groups": "ccm_core.ccm_groups":
[ [
{ {
"name": "users", "name": "users",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -40 "subject_id": 40
} }
], ],
"ccm_core.group_memberships": "ccm_core.group_memberships":
[ [
{ {
"membership_id": -10, "membership_id": 10,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -20, "membership_id": 20,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -50 "user_subject_id": 50
}, },
{ {
"membership_id": -30, "membership_id": 30,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -2 "user_subject_id": 2
}, },
{ {
"membership_id": -40, "membership_id": 40,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -50, "membership_id": 50,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -50 "user_subject_id": 50
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -50, "user_id": 50,
"email_address": "max.mustermann@example.com", "email_address": "max.mustermann@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
@ -174,159 +174,159 @@
"ccm_core.permissions": "ccm_core.permissions":
[ [
{ {
"permission_id": -10, "permission_id": 10,
"grantee_id": -1, "grantee_id": 1,
"granted_privilege_id": -10 "granted_privilege_id": 10
}, },
{ {
"permission_id": -20, "permission_id": 20,
"grantee_id": -2, "grantee_id": 2,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -30, "permission_id": 30,
"grantee_id": -10, "grantee_id": 10,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -40, "permission_id": 40,
"grantee_id": -50, "grantee_id": 50,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -50, "permission_id": 50,
"grantee_id": -50, "grantee_id": 50,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -60, "permission_id": 60,
"grantee_id": -50, "grantee_id": 50,
"object_id": -60, "object_id": 60,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -80, "permission_id": 80,
"grantee_id": -30, "grantee_id": 30,
"object_id": -10, "object_id": 10,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -90, "permission_id": 90,
"grantee_id": -30, "grantee_id": 30,
"object_id": -20, "object_id": 20,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -100, "permission_id": 100,
"grantee_id": -30, "grantee_id": 30,
"object_id": -30, "object_id": 30,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -110, "permission_id": 110,
"grantee_id": -30, "grantee_id": 30,
"object_id": -40, "object_id": 40,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -120, "permission_id": 120,
"grantee_id": -30, "grantee_id": 30,
"object_id": -80, "object_id": 80,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -130, "permission_id": 130,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10, "object_id": 10,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -140, "permission_id": 140,
"grantee_id": -40, "grantee_id": 40,
"object_id": -20, "object_id": 20,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -150, "permission_id": 150,
"grantee_id": -40, "grantee_id": 40,
"object_id": -30, "object_id": 30,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -160, "permission_id": 160,
"grantee_id": -40, "grantee_id": 40,
"object_id": -40, "object_id": 40,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -170, "permission_id": 170,
"grantee_id": -40, "grantee_id": 40,
"object_id": -80, "object_id": 80,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -180, "permission_id": 180,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10, "object_id": 10,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -190, "permission_id": 190,
"grantee_id": -40, "grantee_id": 40,
"object_id": -20, "object_id": 20,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -200, "permission_id": 200,
"grantee_id": -40, "grantee_id": 40,
"object_id": -30, "object_id": 30,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -220, "permission_id": 220,
"grantee_id": -40, "grantee_id": 40,
"object_id": -40, "object_id": 40,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -230, "permission_id": 230,
"grantee_id": -40, "grantee_id": 40,
"object_id": -80, "object_id": 80,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -250, "permission_id": 250,
"grantee_id": -50, "grantee_id": 50,
"object_id": -60, "object_id": 60,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -260, "permission_id": 260,
"grantee_id": -50, "grantee_id": 50,
"object_id": -60, "object_id": 60,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -270, "permission_id": 270,
"grantee_id": -10, "grantee_id": 10,
"object_id": -60, "object_id": 60,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -280, "permission_id": 280,
"grantee_id": -50, "grantee_id": 50,
"object_id": -70, "object_id": 70,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -290, "permission_id": 290,
"grantee_id": -50, "grantee_id": 50,
"object_id": -70, "object_id": 70,
"granted_privilege_id": -30 "granted_privilege_id": 30
} }
] ]
} }

View File

@ -1,35 +1,35 @@
--- ---
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -10 - object_id: 10
display_name: Test Object 1 display_name: Test Object 1
- object_id: -20 - object_id: 20
display_name: Test Object 2 display_name: Test Object 2
- object_id: -30 - object_id: 30
display_name: Test Object 3 display_name: Test Object 3
- object_id: -40 - object_id: 40
display_name: Test Object 4 display_name: Test Object 4
- object_id: -50 - object_id: 50
display_name: Test Object 5 display_name: Test Object 5
- object_id: -60 - object_id: 60
display_name: Test Object 6 display_name: Test Object 6
- object_id: -70 - object_id: 70
display_name: Test Object 7 display_name: Test Object 7
- object_id: -80 - object_id: 80
display_name: Test Object 8 display_name: Test Object 8
ccm_core.ccm_privileges: ccm_core.ccm_privileges:
- privilege_id: -10 - privilege_id: 10
label: admin label: admin
- privilege_id: -20 - privilege_id: 20
label: read label: read
- privilege_id: -30 - privilege_id: 30
label: write label: write
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -39,7 +39,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: webmaster screen_name: webmaster
subject_id: -1 subject_id: 1
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: public-user family_name: public-user
@ -48,7 +48,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: public-user screen_name: public-user
subject_id: -2 subject_id: 2
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Doe family_name: Doe
@ -57,7 +57,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Mustermann family_name: Mustermann
@ -66,138 +66,138 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fjiajhigafgapoa salt: fjiajhigafgapoa
screen_name: mmuster screen_name: mmuster
subject_id: -50 subject_id: 50
ccm_core.ccm_groups: ccm_core.ccm_groups:
- name: users - name: users
subject_id: -30 subject_id: 30
- name: authors - name: authors
subject_id: -40 subject_id: 40
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -10 - membership_id: 10
group_subject_id: -40 group_subject_id: 40
user_subject_id: -10 user_subject_id: 10
- membership_id: -20 - membership_id: 20
group_subject_id: -40 group_subject_id: 40
user_subject_id: -50 user_subject_id: 50
- membership_id: -30 - membership_id: 30
group_subject_id: -30 group_subject_id: 30
user_subject_id: -2 user_subject_id: 2
- membership_id: -40 - membership_id: 40
group_subject_id: -30 group_subject_id: 30
user_subject_id: -10 user_subject_id: 10
- membership_id: -50 - membership_id: 50
group_subject_id: -30 group_subject_id: 30
user_subject_id: -50 user_subject_id: 50
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -50 - user_id: 50
email_address: max.mustermann@example.com email_address: max.mustermann@example.com
bouncing: false bouncing: false
verified: true verified: true
ccm_core.permissions: ccm_core.permissions:
- permission_id: -10 - permission_id: 10
grantee_id: -1 grantee_id: 1
granted_privilege_id: -10 granted_privilege_id: 10
- permission_id: -20 - permission_id: 20
grantee_id: -2 grantee_id: 2
object_id: -50 object_id: 50
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -30 - permission_id: 30
grantee_id: -10 grantee_id: 10
object_id: -50 object_id: 50
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -40 - permission_id: 40
grantee_id: -50 grantee_id: 50
object_id: -50 object_id: 50
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -50 - permission_id: 50
grantee_id: -50 grantee_id: 50
object_id: -50 object_id: 50
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -60 - permission_id: 60
grantee_id: -50 grantee_id: 50
object_id: -60 object_id: 60
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -80 - permission_id: 80
grantee_id: -30 grantee_id: 30
object_id: -10 object_id: 10
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -90 - permission_id: 90
grantee_id: -30 grantee_id: 30
object_id: -20 object_id: 20
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -100 - permission_id: 100
grantee_id: -30 grantee_id: 30
object_id: -30 object_id: 30
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -110 - permission_id: 110
grantee_id: -30 grantee_id: 30
object_id: -40 object_id: 40
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -120 - permission_id: 120
grantee_id: -30 grantee_id: 30
object_id: -80 object_id: 80
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -130 - permission_id: 130
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -140 - permission_id: 140
grantee_id: -40 grantee_id: 40
object_id: -20 object_id: 20
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -150 - permission_id: 150
grantee_id: -40 grantee_id: 40
object_id: -30 object_id: 30
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -160 - permission_id: 160
grantee_id: -40 grantee_id: 40
object_id: -40 object_id: 40
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -170 - permission_id: 170
grantee_id: -40 grantee_id: 40
object_id: -80 object_id: 80
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -180 - permission_id: 180
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -190 - permission_id: 190
grantee_id: -40 grantee_id: 40
object_id: -20 object_id: 20
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -200 - permission_id: 200
grantee_id: -40 grantee_id: 40
object_id: -30 object_id: 30
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -220 - permission_id: 220
grantee_id: -40 grantee_id: 40
object_id: -40 object_id: 40
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -230 - permission_id: 230
grantee_id: -40 grantee_id: 40
object_id: -80 object_id: 80
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -250 - permission_id: 250
grantee_id: -50 grantee_id: 50
object_id: -60 object_id: 60
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -260 - permission_id: 260
grantee_id: -50 grantee_id: 50
object_id: -60 object_id: 60
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -270 - permission_id: 270
grantee_id: -10 grantee_id: 10
object_id: -60 object_id: 60
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -280 - permission_id: 280
grantee_id: -50 grantee_id: 50
object_id: -70 object_id: 70
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -290 - permission_id: 290
grantee_id: -50 grantee_id: 50
object_id: -70 object_id: 70
granted_privilege_id: -30 granted_privilege_id: 30

View File

@ -2,72 +2,72 @@
"ccm_core.ccm_objects": "ccm_core.ccm_objects":
[ [
{ {
"object_id": -10, "object_id": 10,
"display_name": "Test Object 1" "display_name": "Test Object 1"
}, },
{ {
"object_id": -20, "object_id": 20,
"display_name": "Test Object 2" "display_name": "Test Object 2"
}, },
{ {
"object_id": -30, "object_id": 30,
"display_name": "Test Object 3" "display_name": "Test Object 3"
}, },
{ {
"object_id": -40, "object_id": 40,
"display_name": "Test Object 4" "display_name": "Test Object 4"
}, },
{ {
"object_id": -50, "object_id": 50,
"display_name": "Test Object 5" "display_name": "Test Object 5"
}, },
{ {
"object_id": -60, "object_id": 60,
"display_name": "Test Object 6" "display_name": "Test Object 6"
}, },
{ {
"object_id": -70, "object_id": 70,
"display_name": "Test Object 7" "display_name": "Test Object 7"
}, },
{ {
"object_id": -80, "object_id": 80,
"display_name": "Test Object 8" "display_name": "Test Object 8"
} }
], ],
"ccm_core.ccm_privileges": "ccm_core.ccm_privileges":
[ [
{ {
"privilege_id": -10, "privilege_id": 10,
"label": "admin" "label": "admin"
}, },
{ {
"privilege_id": -20, "privilege_id": 20,
"label": "read" "label": "read"
}, },
{ {
"privilege_id": -30, "privilege_id": 30,
"label": "write" "label": "write"
} }
], ],
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -81,7 +81,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "webmaster", "screen_name": "webmaster",
"subject_id": -1 "subject_id": 1
}, },
{ {
"banned": false, "banned": false,
@ -92,7 +92,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "public-user", "screen_name": "public-user",
"subject_id": -2 "subject_id": 2
}, },
{ {
"banned": false, "banned": false,
@ -103,7 +103,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -114,58 +114,58 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fjiajhigafgapoa", "salt": "fjiajhigafgapoa",
"screen_name": "mmuster", "screen_name": "mmuster",
"subject_id": -50 "subject_id": 50
} }
], ],
"ccm_core.ccm_groups": "ccm_core.ccm_groups":
[ [
{ {
"name": "users", "name": "users",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -40 "subject_id": 40
} }
], ],
"ccm_core.group_memberships": "ccm_core.group_memberships":
[ [
{ {
"membership_id": -10, "membership_id": 10,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -20, "membership_id": 20,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -50 "user_subject_id": 50
}, },
{ {
"membership_id": -30, "membership_id": 30,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -2 "user_subject_id": 2
}, },
{ {
"membership_id": -40, "membership_id": 40,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -50, "membership_id": 50,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -50 "user_subject_id": 50
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -50, "user_id": 50,
"email_address": "max.mustermann@example.com", "email_address": "max.mustermann@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
@ -174,129 +174,129 @@
"ccm_core.permissions": "ccm_core.permissions":
[ [
{ {
"permission_id": -10, "permission_id": 10,
"grantee_id": -1, "grantee_id": 1,
"granted_privilege_id": -10 "granted_privilege_id": 10
}, },
{ {
"permission_id": -20, "permission_id": 20,
"grantee_id": -2, "grantee_id": 2,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -40, "permission_id": 40,
"grantee_id": -50, "grantee_id": 50,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -50, "permission_id": 50,
"grantee_id": -50, "grantee_id": 50,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -60, "permission_id": 60,
"grantee_id": -50, "grantee_id": 50,
"object_id": -60, "object_id": 60,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -80, "permission_id": 80,
"grantee_id": -30, "grantee_id": 30,
"object_id": -10, "object_id": 10,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -90, "permission_id": 90,
"grantee_id": -30, "grantee_id": 30,
"object_id": -20, "object_id": 20,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -100, "permission_id": 100,
"grantee_id": -30, "grantee_id": 30,
"object_id": -30, "object_id": 30,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -110, "permission_id": 110,
"grantee_id": -30, "grantee_id": 30,
"object_id": -40, "object_id": 40,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -120, "permission_id": 120,
"grantee_id": -30, "grantee_id": 30,
"object_id": -80, "object_id": 80,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -130, "permission_id": 130,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10, "object_id": 10,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -140, "permission_id": 140,
"grantee_id": -40, "grantee_id": 40,
"object_id": -20, "object_id": 20,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -150, "permission_id": 150,
"grantee_id": -40, "grantee_id": 40,
"object_id": -30, "object_id": 30,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -160, "permission_id": 160,
"grantee_id": -40, "grantee_id": 40,
"object_id": -40, "object_id": 40,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -170, "permission_id": 170,
"grantee_id": -40, "grantee_id": 40,
"object_id": -80, "object_id": 80,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -180, "permission_id": 180,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10, "object_id": 10,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -190, "permission_id": 190,
"grantee_id": -40, "grantee_id": 40,
"object_id": -20, "object_id": 20,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -200, "permission_id": 200,
"grantee_id": -40, "grantee_id": 40,
"object_id": -30, "object_id": 30,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -220, "permission_id": 220,
"grantee_id": -40, "grantee_id": 40,
"object_id": -40, "object_id": 40,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -230, "permission_id": 230,
"grantee_id": -40, "grantee_id": 40,
"object_id": -80, "object_id": 80,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -250, "permission_id": 250,
"grantee_id": -50, "grantee_id": 50,
"object_id": -60, "object_id": 60,
"granted_privilege_id": -20 "granted_privilege_id": 20
} }
] ]
} }

View File

@ -1,35 +1,35 @@
--- ---
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -10 - object_id: 10
display_name: Test Object 1 display_name: Test Object 1
- object_id: -20 - object_id: 20
display_name: Test Object 2 display_name: Test Object 2
- object_id: -30 - object_id: 30
display_name: Test Object 3 display_name: Test Object 3
- object_id: -40 - object_id: 40
display_name: Test Object 4 display_name: Test Object 4
- object_id: -50 - object_id: 50
display_name: Test Object 5 display_name: Test Object 5
- object_id: -60 - object_id: 60
display_name: Test Object 6 display_name: Test Object 6
- object_id: -70 - object_id: 70
display_name: Test Object 7 display_name: Test Object 7
- object_id: -80 - object_id: 80
display_name: Test Object 8 display_name: Test Object 8
ccm_core.ccm_privileges: ccm_core.ccm_privileges:
- privilege_id: -10 - privilege_id: 10
label: admin label: admin
- privilege_id: -20 - privilege_id: 20
label: read label: read
- privilege_id: -30 - privilege_id: 30
label: write label: write
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -39,7 +39,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: webmaster screen_name: webmaster
subject_id: -1 subject_id: 1
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: public-user family_name: public-user
@ -48,7 +48,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: public-user screen_name: public-user
subject_id: -2 subject_id: 2
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Doe family_name: Doe
@ -57,7 +57,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Mustermann family_name: Mustermann
@ -66,118 +66,118 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fjiajhigafgapoa salt: fjiajhigafgapoa
screen_name: mmuster screen_name: mmuster
subject_id: -50 subject_id: 50
ccm_core.ccm_groups: ccm_core.ccm_groups:
- name: users - name: users
subject_id: -30 subject_id: 30
- name: authors - name: authors
subject_id: -40 subject_id: 40
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -10 - membership_id: 10
group_subject_id: -40 group_subject_id: 40
user_subject_id: -10 user_subject_id: 10
- membership_id: -20 - membership_id: 20
group_subject_id: -40 group_subject_id: 40
user_subject_id: -50 user_subject_id: 50
- membership_id: -30 - membership_id: 30
group_subject_id: -30 group_subject_id: 30
user_subject_id: -2 user_subject_id: 2
- membership_id: -40 - membership_id: 40
group_subject_id: -30 group_subject_id: 30
user_subject_id: -10 user_subject_id: 10
- membership_id: -50 - membership_id: 50
group_subject_id: -30 group_subject_id: 30
user_subject_id: -50 user_subject_id: 50
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -50 - user_id: 50
email_address: max.mustermann@example.com email_address: max.mustermann@example.com
bouncing: false bouncing: false
verified: true verified: true
ccm_core.permissions: ccm_core.permissions:
- permission_id: -10 - permission_id: 10
grantee_id: -1 grantee_id: 1
granted_privilege_id: -10 granted_privilege_id: 10
- permission_id: -20 - permission_id: 20
grantee_id: -2 grantee_id: 2
object_id: -50 object_id: 50
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -40 - permission_id: 40
grantee_id: -50 grantee_id: 50
object_id: -50 object_id: 50
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -50 - permission_id: 50
grantee_id: -50 grantee_id: 50
object_id: -50 object_id: 50
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -60 - permission_id: 60
grantee_id: -50 grantee_id: 50
object_id: -60 object_id: 60
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -80 - permission_id: 80
grantee_id: -30 grantee_id: 30
object_id: -10 object_id: 10
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -90 - permission_id: 90
grantee_id: -30 grantee_id: 30
object_id: -20 object_id: 20
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -100 - permission_id: 100
grantee_id: -30 grantee_id: 30
object_id: -30 object_id: 30
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -110 - permission_id: 110
grantee_id: -30 grantee_id: 30
object_id: -40 object_id: 40
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -120 - permission_id: 120
grantee_id: -30 grantee_id: 30
object_id: -80 object_id: 80
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -130 - permission_id: 130
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -140 - permission_id: 140
grantee_id: -40 grantee_id: 40
object_id: -20 object_id: 20
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -150 - permission_id: 150
grantee_id: -40 grantee_id: 40
object_id: -30 object_id: 30
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -160 - permission_id: 160
grantee_id: -40 grantee_id: 40
object_id: -40 object_id: 40
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -170 - permission_id: 170
grantee_id: -40 grantee_id: 40
object_id: -80 object_id: 80
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -180 - permission_id: 180
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -190 - permission_id: 190
grantee_id: -40 grantee_id: 40
object_id: -20 object_id: 20
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -200 - permission_id: 200
grantee_id: -40 grantee_id: 40
object_id: -30 object_id: 30
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -220 - permission_id: 220
grantee_id: -40 grantee_id: 40
object_id: -40 object_id: 40
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -230 - permission_id: 230
grantee_id: -40 grantee_id: 40
object_id: -80 object_id: 80
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -250 - permission_id: 250
grantee_id: -50 grantee_id: 50
object_id: -60 object_id: 60
granted_privilege_id: -20 granted_privilege_id: 20

View File

@ -2,72 +2,72 @@
"ccm_core.ccm_objects": "ccm_core.ccm_objects":
[ [
{ {
"object_id": -10, "object_id": 10,
"display_name": "Test Object 1" "display_name": "Test Object 1"
}, },
{ {
"object_id": -20, "object_id": 20,
"display_name": "Test Object 2" "display_name": "Test Object 2"
}, },
{ {
"object_id": -30, "object_id": 30,
"display_name": "Test Object 3" "display_name": "Test Object 3"
}, },
{ {
"object_id": -40, "object_id": 40,
"display_name": "Test Object 4" "display_name": "Test Object 4"
}, },
{ {
"object_id": -50, "object_id": 50,
"display_name": "Test Object 5" "display_name": "Test Object 5"
}, },
{ {
"object_id": -60, "object_id": 60,
"display_name": "Test Object 6" "display_name": "Test Object 6"
}, },
{ {
"object_id": -70, "object_id": 70,
"display_name": "Test Object 7" "display_name": "Test Object 7"
}, },
{ {
"object_id": -80, "object_id": 80,
"display_name": "Test Object 8" "display_name": "Test Object 8"
} }
], ],
"ccm_core.ccm_privileges": "ccm_core.ccm_privileges":
[ [
{ {
"privilege_id": -10, "privilege_id": 10,
"label": "admin" "label": "admin"
}, },
{ {
"privilege_id": -20, "privilege_id": 20,
"label": "read" "label": "read"
}, },
{ {
"privilege_id": -30, "privilege_id": 30,
"label": "write" "label": "write"
} }
], ],
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -81,7 +81,7 @@
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"password_reset_required": false, "password_reset_required": false,
"screen_name": "webmaster", "screen_name": "webmaster",
"subject_id": -1 "subject_id": 1
}, },
{ {
"banned": false, "banned": false,
@ -92,7 +92,7 @@
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"password_reset_required": false, "password_reset_required": false,
"screen_name": "public-user", "screen_name": "public-user",
"subject_id": -2 "subject_id": 2
}, },
{ {
"banned": false, "banned": false,
@ -103,7 +103,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -114,58 +114,58 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fjiajhigafgapoa", "salt": "fjiajhigafgapoa",
"screen_name": "mmuster", "screen_name": "mmuster",
"subject_id": -50 "subject_id": 50
} }
], ],
"ccm_core.ccm_groups": "ccm_core.ccm_groups":
[ [
{ {
"name": "users", "name": "users",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -40 "subject_id": 40
} }
], ],
"ccm_core.group_memberships": "ccm_core.group_memberships":
[ [
{ {
"membership_id": -10, "membership_id": 10,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -20, "membership_id": 20,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -50 "user_subject_id": 50
}, },
{ {
"membership_id": -30, "membership_id": 30,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -2 "user_subject_id": 2
}, },
{ {
"membership_id": -40, "membership_id": 40,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -50, "membership_id": 50,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -50 "user_subject_id": 50
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -50, "user_id": 50,
"email_address": "max.mustermann@example.com", "email_address": "max.mustermann@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
@ -174,141 +174,141 @@
"ccm_core.permissions": "ccm_core.permissions":
[ [
{ {
"permission_id": -10, "permission_id": 10,
"grantee_id": -1, "grantee_id": 1,
"granted_privilege_id": -10 "granted_privilege_id": 10
}, },
{ {
"permission_id": -20, "permission_id": 20,
"grantee_id": -2, "grantee_id": 2,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -30, "permission_id": 30,
"grantee_id": -10, "grantee_id": 10,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -40, "permission_id": 40,
"grantee_id": -50, "grantee_id": 50,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -50, "permission_id": 50,
"grantee_id": -50, "grantee_id": 50,
"object_id": -50, "object_id": 50,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -60, "permission_id": 60,
"grantee_id": -50, "grantee_id": 50,
"object_id": -60, "object_id": 60,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -80, "permission_id": 80,
"grantee_id": -30, "grantee_id": 30,
"object_id": -10, "object_id": 10,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -90, "permission_id": 90,
"grantee_id": -30, "grantee_id": 30,
"object_id": -20, "object_id": 20,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -100, "permission_id": 100,
"grantee_id": -30, "grantee_id": 30,
"object_id": -30, "object_id": 30,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -110, "permission_id": 110,
"grantee_id": -30, "grantee_id": 30,
"object_id": -40, "object_id": 40,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -120, "permission_id": 120,
"grantee_id": -30, "grantee_id": 30,
"object_id": -80, "object_id": 80,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -130, "permission_id": 130,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10, "object_id": 10,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -140, "permission_id": 140,
"grantee_id": -40, "grantee_id": 40,
"object_id": -20, "object_id": 20,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -150, "permission_id": 150,
"grantee_id": -40, "grantee_id": 40,
"object_id": -30, "object_id": 30,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -160, "permission_id": 160,
"grantee_id": -40, "grantee_id": 40,
"object_id": -40, "object_id": 40,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -170, "permission_id": 170,
"grantee_id": -40, "grantee_id": 40,
"object_id": -80, "object_id": 80,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -180, "permission_id": 180,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10, "object_id": 10,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -190, "permission_id": 190,
"grantee_id": -40, "grantee_id": 40,
"object_id": -20, "object_id": 20,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -200, "permission_id": 200,
"grantee_id": -40, "grantee_id": 40,
"object_id": -30, "object_id": 30,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -220, "permission_id": 220,
"grantee_id": -40, "grantee_id": 40,
"object_id": -40, "object_id": 40,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -230, "permission_id": 230,
"grantee_id": -40, "grantee_id": 40,
"object_id": -80, "object_id": 80,
"granted_privilege_id": -30 "granted_privilege_id": 30
}, },
{ {
"permission_id": -250, "permission_id": 250,
"grantee_id": -50, "grantee_id": 50,
"object_id": -60, "object_id": 60,
"granted_privilege_id": -20 "granted_privilege_id": 20
}, },
{ {
"permission_id": -260, "permission_id": 260,
"grantee_id": -50, "grantee_id": 50,
"object_id": -60, "object_id": 60,
"granted_privilege_id": -30 "granted_privilege_id": 30
} }
] ]
} }

View File

@ -1,35 +1,35 @@
--- ---
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -10 - object_id: 10
display_name: Test Object 1 display_name: Test Object 1
- object_id: -20 - object_id: 20
display_name: Test Object 2 display_name: Test Object 2
- object_id: -30 - object_id: 30
display_name: Test Object 3 display_name: Test Object 3
- object_id: -40 - object_id: 40
display_name: Test Object 4 display_name: Test Object 4
- object_id: -50 - object_id: 50
display_name: Test Object 5 display_name: Test Object 5
- object_id: -60 - object_id: 60
display_name: Test Object 6 display_name: Test Object 6
- object_id: -70 - object_id: 70
display_name: Test Object 7 display_name: Test Object 7
- object_id: -80 - object_id: 80
display_name: Test Object 8 display_name: Test Object 8
ccm_core.ccm_privileges: ccm_core.ccm_privileges:
- privilege_id: -10 - privilege_id: 10
label: admin label: admin
- privilege_id: -20 - privilege_id: 20
label: read label: read
- privilege_id: -30 - privilege_id: 30
label: write label: write
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -39,7 +39,7 @@ ccm_core.ccm_users:
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
password_reset_required: false password_reset_required: false
screen_name: webmaster screen_name: webmaster
subject_id: -1 subject_id: 1
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: public-user family_name: public-user
@ -48,7 +48,7 @@ ccm_core.ccm_users:
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
password_reset_required: false password_reset_required: false
screen_name: public-user screen_name: public-user
subject_id: -2 subject_id: 2
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Doe family_name: Doe
@ -57,7 +57,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Mustermann family_name: Mustermann
@ -66,126 +66,126 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fjiajhigafgapoa salt: fjiajhigafgapoa
screen_name: mmuster screen_name: mmuster
subject_id: -50 subject_id: 50
ccm_core.ccm_groups: ccm_core.ccm_groups:
- name: users - name: users
subject_id: -30 subject_id: 30
- name: authors - name: authors
subject_id: -40 subject_id: 40
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -10 - membership_id: 10
group_subject_id: -40 group_subject_id: 40
user_subject_id: -10 user_subject_id: 10
- membership_id: -20 - membership_id: 20
group_subject_id: -40 group_subject_id: 40
user_subject_id: -50 user_subject_id: 50
- membership_id: -30 - membership_id: 30
group_subject_id: -30 group_subject_id: 30
user_subject_id: -2 user_subject_id: 2
- membership_id: -40 - membership_id: 40
group_subject_id: -30 group_subject_id: 30
user_subject_id: -10 user_subject_id: 10
- membership_id: -50 - membership_id: 50
group_subject_id: -30 group_subject_id: 30
user_subject_id: -50 user_subject_id: 50
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -50 - user_id: 50
email_address: max.mustermann@example.com email_address: max.mustermann@example.com
bouncing: false bouncing: false
verified: true verified: true
ccm_core.permissions: ccm_core.permissions:
- permission_id: -10 - permission_id: 10
grantee_id: -1 grantee_id: 1
granted_privilege_id: -10 granted_privilege_id: 10
- permission_id: -20 - permission_id: 20
grantee_id: -2 grantee_id: 2
object_id: -50 object_id: 50
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -30 - permission_id: 30
grantee_id: -10 grantee_id: 10
object_id: -50 object_id: 50
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -40 - permission_id: 40
grantee_id: -50 grantee_id: 50
object_id: -50 object_id: 50
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -50 - permission_id: 50
grantee_id: -50 grantee_id: 50
object_id: -50 object_id: 50
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -60 - permission_id: 60
grantee_id: -50 grantee_id: 50
object_id: -60 object_id: 60
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -80 - permission_id: 80
grantee_id: -30 grantee_id: 30
object_id: -10 object_id: 10
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -90 - permission_id: 90
grantee_id: -30 grantee_id: 30
object_id: -20 object_id: 20
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -100 - permission_id: 100
grantee_id: -30 grantee_id: 30
object_id: -30 object_id: 30
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -110 - permission_id: 110
grantee_id: -30 grantee_id: 30
object_id: -40 object_id: 40
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -120 - permission_id: 120
grantee_id: -30 grantee_id: 30
object_id: -80 object_id: 80
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -130 - permission_id: 130
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -140 - permission_id: 140
grantee_id: -40 grantee_id: 40
object_id: -20 object_id: 20
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -150 - permission_id: 150
grantee_id: -40 grantee_id: 40
object_id: -30 object_id: 30
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -160 - permission_id: 160
grantee_id: -40 grantee_id: 40
object_id: -40 object_id: 40
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -170 - permission_id: 170
grantee_id: -40 grantee_id: 40
object_id: -80 object_id: 80
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -180 - permission_id: 180
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -190 - permission_id: 190
grantee_id: -40 grantee_id: 40
object_id: -20 object_id: 20
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -200 - permission_id: 200
grantee_id: -40 grantee_id: 40
object_id: -30 object_id: 30
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -220 - permission_id: 220
grantee_id: -40 grantee_id: 40
object_id: -40 object_id: 40
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -230 - permission_id: 230
grantee_id: -40 grantee_id: 40
object_id: -80 object_id: 80
granted_privilege_id: -30 granted_privilege_id: 30
- permission_id: -250 - permission_id: 250
grantee_id: -50 grantee_id: 50
object_id: -60 object_id: 60
granted_privilege_id: -20 granted_privilege_id: 20
- permission_id: -260 - permission_id: 260
grantee_id: -50 grantee_id: 50
object_id: -60 object_id: 60
granted_privilege_id: -30 granted_privilege_id: 30

View File

@ -2,19 +2,19 @@
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -28,7 +28,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -39,34 +39,34 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fjiajhigafgapoa", "salt": "fjiajhigafgapoa",
"screen_name": "mmuster", "screen_name": "mmuster",
"subject_id": -50 "subject_id": 50
} }
], ],
"ccm_core.ccm_groups": "ccm_core.ccm_groups":
[ [
{ {
"name": "admins", "name": "admins",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "users", "name": "users",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -40 "subject_id": 40
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -50, "user_id": 50,
"email_address": "max.mustermann@example.com", "email_address": "max.mustermann@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
@ -75,87 +75,87 @@
"ccm_core.group_memberships": "ccm_core.group_memberships":
[ [
{ {
"membership_id": -10, "membership_id": 10,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -20, "membership_id": 20,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -30, "membership_id": 30,
"group_subject_id": -20, "group_subject_id": 20,
"user_subject_id": -50 "user_subject_id": 50
} }
], ],
"ccm_core.ccm_privileges": "ccm_core.ccm_privileges":
[ [
{ {
"privilege_id": -10, "privilege_id": 10,
"label": "admin" "label": "admin"
}, },
{ {
"privilege_id": -20, "privilege_id": 20,
"label": "read" "label": "read"
}, },
{ {
"privilege_id": -30, "privilege_id": 30,
"label": "write" "label": "write"
}, },
{ {
"privilege_id": -40, "privilege_id": 40,
"label": "unused" "label": "unused"
} }
], ],
"ccm_core.ccm_objects": "ccm_core.ccm_objects":
[ [
{ {
"object_id": -10, "object_id": 10,
"display_name": "Test Object 1" "display_name": "Test Object 1"
}, },
{ {
"object_id": -20, "object_id": 20,
"display_name": "Test Object 2" "display_name": "Test Object 2"
}, },
{ {
"object_id": -30, "object_id": 30,
"display_name": "Test Object 3" "display_name": "Test Object 3"
}, },
{ {
"object_id": -40, "object_id": 40,
"display_name": "Test Object 4" "display_name": "Test Object 4"
} }
], ],
"ccm_core.permissions": "ccm_core.permissions":
[ [
{ {
"permission_id": -10, "permission_id": 10,
"creation_date": "2015-07-29 14:32:46", "creation_date": "2015-07-29 14:32:46",
"granted_privilege_id": -10, "granted_privilege_id": 10,
"grantee_id": -20 "grantee_id": 20
}, },
{ {
"permission_id": -20, "permission_id": 20,
"creation_date": "2015-07-29 14:34:30", "creation_date": "2015-07-29 14:34:30",
"granted_privilege_id": -20, "granted_privilege_id": 20,
"grantee_id": -30, "grantee_id": 30,
"object_id": -10 "object_id": 10
}, },
{ {
"permission_id": -30, "permission_id": 30,
"creation_date": "2015-07-29 14:36:05", "creation_date": "2015-07-29 14:36:05",
"granted_privilege_id": -30, "granted_privilege_id": 30,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10 "object_id": 10
}, },
{ {
"permission_id": -40, "permission_id": 40,
"creation_date": "2015-07-29 14:37:22", "creation_date": "2015-07-29 14:37:22",
"granted_privilege_id": -20, "granted_privilege_id": 20,
"grantee_id": -10, "grantee_id": 10,
"object_id": -20 "object_id": 20
} }
] ]

View File

@ -1,10 +1,10 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -14,7 +14,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Mustermann family_name: Mustermann
@ -23,68 +23,68 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fjiajhigafgapoa salt: fjiajhigafgapoa
screen_name: mmuster screen_name: mmuster
subject_id: -50 subject_id: 50
ccm_core.ccm_groups: ccm_core.ccm_groups:
- name: admins - name: admins
subject_id: -20 subject_id: 20
- name: users - name: users
subject_id: -30 subject_id: 30
- name: authors - name: authors
subject_id: -40 subject_id: 40
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -50 - user_id: 50
email_address: max.mustermann@example.com email_address: max.mustermann@example.com
bouncing: false bouncing: false
verified: true verified: true
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -10 - membership_id: 10
group_subject_id: -30 group_subject_id: 30
user_subject_id: -10 user_subject_id: 10
- membership_id: -20 - membership_id: 20
group_subject_id: -40 group_subject_id: 40
user_subject_id: -10 user_subject_id: 10
- membership_id: -30 - membership_id: 30
group_subject_id: -20 group_subject_id: 20
user_subject_id: -50 user_subject_id: 50
ccm_core.ccm_privileges: ccm_core.ccm_privileges:
- privilege_id: -10 - privilege_id: 10
label: admin label: admin
- privilege_id: -20 - privilege_id: 20
label: read label: read
- privilege_id: -30 - privilege_id: 30
label: write label: write
- privilege_id: -40 - privilege_id: 40
label: unused label: unused
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -10 - object_id: 10
display_name: Test Object 1 display_name: Test Object 1
- object_id: -20 - object_id: 20
display_name: Test Object 2 display_name: Test Object 2
- object_id: -30 - object_id: 30
display_name: Test Object 3 display_name: Test Object 3
- object_id: -40 - object_id: 40
display_name: Test Object 4 display_name: Test Object 4
ccm_core.permissions: ccm_core.permissions:
- permission_id: -10 - permission_id: 10
creation_date: '2015-07-29 14:32:46' creation_date: '2015-07-29 14:32:46'
granted_privilege_id: -10 granted_privilege_id: 10
grantee_id: -20 grantee_id: 20
- permission_id: -20 - permission_id: 20
creation_date: '2015-07-29 14:34:30' creation_date: '2015-07-29 14:34:30'
granted_privilege_id: -20 granted_privilege_id: 20
grantee_id: -30 grantee_id: 30
object_id: -10 object_id: 10
- permission_id: -30 - permission_id: 30
creation_date: '2015-07-29 14:36:05' creation_date: '2015-07-29 14:36:05'
granted_privilege_id: -30 granted_privilege_id: 30
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
- permission_id: -40 - permission_id: 40
creation_date: '2015-07-29 14:37:22' creation_date: '2015-07-29 14:37:22'
granted_privilege_id: -20 granted_privilege_id: 20
grantee_id: -10 grantee_id: 10
object_id: -20 object_id: 20

View File

@ -2,19 +2,19 @@
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -28,7 +28,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -39,34 +39,34 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fjiajhigafgapoa", "salt": "fjiajhigafgapoa",
"screen_name": "mmuster", "screen_name": "mmuster",
"subject_id": -50 "subject_id": 50
} }
], ],
"ccm_core.ccm_groups": "ccm_core.ccm_groups":
[ [
{ {
"name": "admins", "name": "admins",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "users", "name": "users",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -40 "subject_id": 40
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -50, "user_id": 50,
"email_address": "max.mustermann@example.com", "email_address": "max.mustermann@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
@ -75,94 +75,94 @@
"ccm_core.group_memberships": "ccm_core.group_memberships":
[ [
{ {
"membership_id": -10, "membership_id": 10,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -20, "membership_id": 20,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -30, "membership_id": 30,
"group_subject_id": -20, "group_subject_id": 20,
"user_subject_id": -50 "user_subject_id": 50
} }
], ],
"ccm_core.ccm_privileges": "ccm_core.ccm_privileges":
[ [
{ {
"privilege_id": -10, "privilege_id": 10,
"label": "admin" "label": "admin"
}, },
{ {
"privilege_id": -20, "privilege_id": 20,
"label": "read" "label": "read"
}, },
{ {
"privilege_id": -30, "privilege_id": 30,
"label": "write" "label": "write"
}, },
{ {
"privilege_id": -40, "privilege_id": 40,
"label": "unused" "label": "unused"
} }
], ],
"ccm_core.ccm_objects": "ccm_core.ccm_objects":
[ [
{ {
"object_id": -10, "object_id": 10,
"display_name": "Test Object 1" "display_name": "Test Object 1"
}, },
{ {
"object_id": -20, "object_id": 20,
"display_name": "Test Object 2" "display_name": "Test Object 2"
}, },
{ {
"object_id": -30, "object_id": 30,
"display_name": "Test Object 3" "display_name": "Test Object 3"
}, },
{ {
"object_id": -40, "object_id": 40,
"display_name": "Test Object 4" "display_name": "Test Object 4"
} }
], ],
"ccm_core.permissions": "ccm_core.permissions":
[ [
{ {
"permission_id": -10, "permission_id": 10,
"creation_date": "2015-07-29 14:32:46", "creation_date": "2015-07-29 14:32:46",
"granted_privilege_id": -10, "granted_privilege_id": 10,
"grantee_id": -20 "grantee_id": 20
}, },
{ {
"permission_id": -20, "permission_id": 20,
"creation_date": "2015-07-29 14:34:30", "creation_date": "2015-07-29 14:34:30",
"granted_privilege_id": -20, "granted_privilege_id": 20,
"grantee_id": -30, "grantee_id": 30,
"object_id": -10 "object_id": 10
}, },
{ {
"permission_id": -30, "permission_id": 30,
"creation_date": "2015-07-29 14:36:05", "creation_date": "2015-07-29 14:36:05",
"granted_privilege_id": -30, "granted_privilege_id": 30,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10 "object_id": 10
}, },
{ {
"permission_id": -35, "permission_id": 35,
"creation_date": "2015-07-29 14:57:55", "creation_date": "2015-07-29 14:57:55",
"granted_privilege_id": -20, "granted_privilege_id": 20,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10 "object_id": 10
}, },
{ {
"permission_id": -40, "permission_id": 40,
"creation_date": "2015-07-29 14:37:22", "creation_date": "2015-07-29 14:37:22",
"granted_privilege_id": -20, "granted_privilege_id": 20,
"grantee_id": -30, "grantee_id": 30,
"object_id": -20 "object_id": 20
} }
] ]

View File

@ -1,10 +1,10 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -14,7 +14,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Mustermann family_name: Mustermann
@ -23,73 +23,73 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fjiajhigafgapoa salt: fjiajhigafgapoa
screen_name: mmuster screen_name: mmuster
subject_id: -50 subject_id: 50
ccm_core.ccm_groups: ccm_core.ccm_groups:
- name: admins - name: admins
subject_id: -20 subject_id: 20
- name: users - name: users
subject_id: -30 subject_id: 30
- name: authors - name: authors
subject_id: -40 subject_id: 40
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -50 - user_id: 50
email_address: max.mustermann@example.com email_address: max.mustermann@example.com
bouncing: false bouncing: false
verified: true verified: true
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -10 - membership_id: 10
group_subject_id: -30 group_subject_id: 30
user_subject_id: -10 user_subject_id: 10
- membership_id: -20 - membership_id: 20
group_subject_id: -40 group_subject_id: 40
user_subject_id: -10 user_subject_id: 10
- membership_id: -30 - membership_id: 30
group_subject_id: -20 group_subject_id: 20
user_subject_id: -50 user_subject_id: 50
ccm_core.ccm_privileges: ccm_core.ccm_privileges:
- privilege_id: -10 - privilege_id: 10
label: admin label: admin
- privilege_id: -20 - privilege_id: 20
label: read label: read
- privilege_id: -30 - privilege_id: 30
label: write label: write
- privilege_id: -40 - privilege_id: 40
label: unused label: unused
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -10 - object_id: 10
display_name: Test Object 1 display_name: Test Object 1
- object_id: -20 - object_id: 20
display_name: Test Object 2 display_name: Test Object 2
- object_id: -30 - object_id: 30
display_name: Test Object 3 display_name: Test Object 3
- object_id: -40 - object_id: 40
display_name: Test Object 4 display_name: Test Object 4
ccm_core.permissions: ccm_core.permissions:
- permission_id: -10 - permission_id: 10
creation_date: '2015-07-29 14:32:46' creation_date: '2015-07-29 14:32:46'
granted_privilege_id: -10 granted_privilege_id: 10
grantee_id: -20 grantee_id: 20
- permission_id: -20 - permission_id: 20
creation_date: '2015-07-29 14:34:30' creation_date: '2015-07-29 14:34:30'
granted_privilege_id: -20 granted_privilege_id: 20
grantee_id: -30 grantee_id: 30
object_id: -10 object_id: 10
- permission_id: -30 - permission_id: 30
creation_date: '2015-07-29 14:36:05' creation_date: '2015-07-29 14:36:05'
granted_privilege_id: -30 granted_privilege_id: 30
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
- permission_id: -35 - permission_id: 35
creation_date: '2015-07-29 14:57:55' creation_date: '2015-07-29 14:57:55'
granted_privilege_id: -20 granted_privilege_id: 20
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
- permission_id: -40 - permission_id: 40
creation_date: '2015-07-29 14:37:22' creation_date: '2015-07-29 14:37:22'
granted_privilege_id: -20 granted_privilege_id: 20
grantee_id: -30 grantee_id: 30
object_id: -20 object_id: 20

View File

@ -2,19 +2,19 @@
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -28,7 +28,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -39,34 +39,34 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fjiajhigafgapoa", "salt": "fjiajhigafgapoa",
"screen_name": "mmuster", "screen_name": "mmuster",
"subject_id": -50 "subject_id": 50
} }
], ],
"ccm_core.ccm_groups": "ccm_core.ccm_groups":
[ [
{ {
"name": "admins", "name": "admins",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "users", "name": "users",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -40 "subject_id": 40
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -50, "user_id": 50,
"email_address": "max.mustermann@example.com", "email_address": "max.mustermann@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
@ -75,106 +75,106 @@
"ccm_core.group_memberships": "ccm_core.group_memberships":
[ [
{ {
"membership_id": -10, "membership_id": 10,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -20, "membership_id": 20,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -30, "membership_id": 30,
"group_subject_id": -20, "group_subject_id": 20,
"user_subject_id": -50 "user_subject_id": 50
} }
], ],
"ccm_core.ccm_privileges": "ccm_core.ccm_privileges":
[ [
{ {
"privilege_id": -10, "privilege_id": 10,
"label": "admin" "label": "admin"
}, },
{ {
"privilege_id": -20, "privilege_id": 20,
"label": "read" "label": "read"
}, },
{ {
"privilege_id": -30, "privilege_id": 30,
"label": "write" "label": "write"
}, },
{ {
"privilege_id": -40, "privilege_id": 40,
"label": "unused" "label": "unused"
} }
], ],
"ccm_core.ccm_objects": "ccm_core.ccm_objects":
[ [
{ {
"object_id": -10, "object_id": 10,
"display_name": "Test Object 1" "display_name": "Test Object 1"
}, },
{ {
"object_id": -20, "object_id": 20,
"display_name": "Test Object 2" "display_name": "Test Object 2"
}, },
{ {
"object_id": -30, "object_id": 30,
"display_name": "Test Object 3" "display_name": "Test Object 3"
}, },
{ {
"object_id": -40, "object_id": 40,
"display_name": "Test Object 4" "display_name": "Test Object 4"
} }
], ],
"ccm_core.permissions": "ccm_core.permissions":
[ [
{ {
"permission_id": -10, "permission_id": 10,
"creation_date": "2015-07-29 14:32:46", "creation_date": "2015-07-29 14:32:46",
"granted_privilege_id": -10, "granted_privilege_id": 10,
"grantee_id": -20 "grantee_id": 20
}, },
{ {
"permission_id": -20, "permission_id": 20,
"creation_date": "2015-07-29 14:34:30", "creation_date": "2015-07-29 14:34:30",
"granted_privilege_id": -20, "granted_privilege_id": 20,
"grantee_id": -30, "grantee_id": 30,
"object_id": -10 "object_id": 10
}, },
{ {
"permission_id": -30, "permission_id": 30,
"creation_date": "2015-07-29 14:36:05", "creation_date": "2015-07-29 14:36:05",
"granted_privilege_id": -30, "granted_privilege_id": 30,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10 "object_id": 10
}, },
{ {
"permission_id": -35, "permission_id": 35,
"creation_date": "2015-07-29 14:57:55", "creation_date": "2015-07-29 14:57:55",
"granted_privilege_id": -20, "granted_privilege_id": 20,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10 "object_id": 10
}, },
{ {
"permission_id": -40, "permission_id": 40,
"creation_date": "2015-07-29 14:37:22", "creation_date": "2015-07-29 14:37:22",
"granted_privilege_id": -20, "granted_privilege_id": 20,
"grantee_id": -10, "grantee_id": 10,
"object_id": -20 "object_id": 20
}, },
{ {
"permission_id": -50, "permission_id": 50,
"granted_privilege_id": -20, "granted_privilege_id": 20,
"grantee_id": -50, "grantee_id": 50,
"object_id": -40 "object_id": 40
}, },
{ {
"permission_id": -60, "permission_id": 60,
"granted_privilege_id": -30, "granted_privilege_id": 30,
"grantee_id": -50, "grantee_id": 50,
"object_id": -40 "object_id": 40
} }
] ]

View File

@ -1,10 +1,10 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -14,7 +14,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Mustermann family_name: Mustermann
@ -23,81 +23,81 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fjiajhigafgapoa salt: fjiajhigafgapoa
screen_name: mmuster screen_name: mmuster
subject_id: -50 subject_id: 50
ccm_core.ccm_groups: ccm_core.ccm_groups:
- name: admins - name: admins
subject_id: -20 subject_id: 20
- name: users - name: users
subject_id: -30 subject_id: 30
- name: authors - name: authors
subject_id: -40 subject_id: 40
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -50 - user_id: 50
email_address: max.mustermann@example.com email_address: max.mustermann@example.com
bouncing: false bouncing: false
verified: true verified: true
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -10 - membership_id: 10
group_subject_id: -30 group_subject_id: 30
user_subject_id: -10 user_subject_id: 10
- membership_id: -20 - membership_id: 20
group_subject_id: -40 group_subject_id: 40
user_subject_id: -10 user_subject_id: 10
- membership_id: -30 - membership_id: 30
group_subject_id: -20 group_subject_id: 20
user_subject_id: -50 user_subject_id: 50
ccm_core.ccm_privileges: ccm_core.ccm_privileges:
- privilege_id: -10 - privilege_id: 10
label: admin label: admin
- privilege_id: -20 - privilege_id: 20
label: read label: read
- privilege_id: -30 - privilege_id: 30
label: write label: write
- privilege_id: -40 - privilege_id: 40
label: unused label: unused
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -10 - object_id: 10
display_name: Test Object 1 display_name: Test Object 1
- object_id: -20 - object_id: 20
display_name: Test Object 2 display_name: Test Object 2
- object_id: -30 - object_id: 30
display_name: Test Object 3 display_name: Test Object 3
- object_id: -40 - object_id: 40
display_name: Test Object 4 display_name: Test Object 4
ccm_core.permissions: ccm_core.permissions:
- permission_id: -10 - permission_id: 10
creation_date: '2015-07-29 14:32:46' creation_date: '2015-07-29 14:32:46'
granted_privilege_id: -10 granted_privilege_id: 10
grantee_id: -20 grantee_id: 20
- permission_id: -20 - permission_id: 20
creation_date: '2015-07-29 14:34:30' creation_date: '2015-07-29 14:34:30'
granted_privilege_id: -20 granted_privilege_id: 20
grantee_id: -30 grantee_id: 30
object_id: -10 object_id: 10
- permission_id: -30 - permission_id: 30
creation_date: '2015-07-29 14:36:05' creation_date: '2015-07-29 14:36:05'
granted_privilege_id: -30 granted_privilege_id: 30
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
- permission_id: -35 - permission_id: 35
creation_date: '2015-07-29 14:57:55' creation_date: '2015-07-29 14:57:55'
granted_privilege_id: -20 granted_privilege_id: 20
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
- permission_id: -40 - permission_id: 40
creation_date: '2015-07-29 14:37:22' creation_date: '2015-07-29 14:37:22'
granted_privilege_id: -20 granted_privilege_id: 20
grantee_id: -10 grantee_id: 10
object_id: -20 object_id: 20
- permission_id: -50 - permission_id: 50
granted_privilege_id: -20 granted_privilege_id: 20
grantee_id: -50 grantee_id: 50
object_id: -40 object_id: 40
- permission_id: -60 - permission_id: 60
granted_privilege_id: -30 granted_privilege_id: 30
grantee_id: -50 grantee_id: 50
object_id: -40 object_id: 40

View File

@ -2,19 +2,19 @@
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -28,7 +28,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -39,34 +39,34 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fjiajhigafgapoa", "salt": "fjiajhigafgapoa",
"screen_name": "mmuster", "screen_name": "mmuster",
"subject_id": -50 "subject_id": 50
} }
], ],
"ccm_core.ccm_groups": "ccm_core.ccm_groups":
[ [
{ {
"name": "admins", "name": "admins",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "users", "name": "users",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "authors", "name": "authors",
"subject_id": -40 "subject_id": 40
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -50, "user_id": 50,
"email_address": "max.mustermann@example.com", "email_address": "max.mustermann@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
@ -75,94 +75,94 @@
"ccm_core.group_memberships": "ccm_core.group_memberships":
[ [
{ {
"membership_id": -10, "membership_id": 10,
"group_subject_id": -30, "group_subject_id": 30,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -20, "membership_id": 20,
"group_subject_id": -40, "group_subject_id": 40,
"user_subject_id": -10 "user_subject_id": 10
}, },
{ {
"membership_id": -30, "membership_id": 30,
"group_subject_id": -20, "group_subject_id": 20,
"user_subject_id": -50 "user_subject_id": 50
} }
], ],
"ccm_core.ccm_privileges": "ccm_core.ccm_privileges":
[ [
{ {
"privilege_id": -10, "privilege_id": 10,
"label": "admin" "label": "admin"
}, },
{ {
"privilege_id": -20, "privilege_id": 20,
"label": "read" "label": "read"
}, },
{ {
"privilege_id": -30, "privilege_id": 30,
"label": "write" "label": "write"
}, },
{ {
"privilege_id": -40, "privilege_id": 40,
"label": "unused" "label": "unused"
} }
], ],
"ccm_core.ccm_objects": "ccm_core.ccm_objects":
[ [
{ {
"object_id": -10, "object_id": 10,
"display_name": "Test Object 1" "display_name": "Test Object 1"
}, },
{ {
"object_id": -20, "object_id": 20,
"display_name": "Test Object 2" "display_name": "Test Object 2"
}, },
{ {
"object_id": -30, "object_id": 30,
"display_name": "Test Object 3" "display_name": "Test Object 3"
}, },
{ {
"object_id": -40, "object_id": 40,
"display_name": "Test Object 4" "display_name": "Test Object 4"
} }
], ],
"ccm_core.permissions": "ccm_core.permissions":
[ [
{ {
"permission_id": -10, "permission_id": 10,
"creation_date": "2015-07-29 14:32:46", "creation_date": "2015-07-29 14:32:46",
"granted_privilege_id": -10, "granted_privilege_id": 10,
"grantee_id": -20 "grantee_id": 20
}, },
{ {
"permission_id": -20, "permission_id": 20,
"creation_date": "2015-07-29 14:34:30", "creation_date": "2015-07-29 14:34:30",
"granted_privilege_id": -20, "granted_privilege_id": 20,
"grantee_id": -30, "grantee_id": 30,
"object_id": -10 "object_id": 10
}, },
{ {
"permission_id": -30, "permission_id": 30,
"creation_date": "2015-07-29 14:36:05", "creation_date": "2015-07-29 14:36:05",
"granted_privilege_id": -30, "granted_privilege_id": 30,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10 "object_id": 10
}, },
{ {
"permission_id": -35, "permission_id": 35,
"creation_date": "2015-07-29 14:57:55", "creation_date": "2015-07-29 14:57:55",
"granted_privilege_id": -20, "granted_privilege_id": 20,
"grantee_id": -40, "grantee_id": 40,
"object_id": -10 "object_id": 10
}, },
{ {
"permission_id": -40, "permission_id": 40,
"creation_date": "2015-07-29 14:37:22", "creation_date": "2015-07-29 14:37:22",
"granted_privilege_id": -20, "granted_privilege_id": 20,
"grantee_id": -10, "grantee_id": 10,
"object_id": -20 "object_id": 20
} }
] ]

View File

@ -1,10 +1,10 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -14,7 +14,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Mustermann family_name: Mustermann
@ -23,73 +23,73 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fjiajhigafgapoa salt: fjiajhigafgapoa
screen_name: mmuster screen_name: mmuster
subject_id: -50 subject_id: 50
ccm_core.ccm_groups: ccm_core.ccm_groups:
- name: admins - name: admins
subject_id: -20 subject_id: 20
- name: users - name: users
subject_id: -30 subject_id: 30
- name: authors - name: authors
subject_id: -40 subject_id: 40
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -50 - user_id: 50
email_address: max.mustermann@example.com email_address: max.mustermann@example.com
bouncing: false bouncing: false
verified: true verified: true
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -10 - membership_id: 10
group_subject_id: -30 group_subject_id: 30
user_subject_id: -10 user_subject_id: 10
- membership_id: -20 - membership_id: 20
group_subject_id: -40 group_subject_id: 40
user_subject_id: -10 user_subject_id: 10
- membership_id: -30 - membership_id: 30
group_subject_id: -20 group_subject_id: 20
user_subject_id: -50 user_subject_id: 50
ccm_core.ccm_privileges: ccm_core.ccm_privileges:
- privilege_id: -10 - privilege_id: 10
label: admin label: admin
- privilege_id: -20 - privilege_id: 20
label: read label: read
- privilege_id: -30 - privilege_id: 30
label: write label: write
- privilege_id: -40 - privilege_id: 40
label: unused label: unused
ccm_core.ccm_objects: ccm_core.ccm_objects:
- object_id: -10 - object_id: 10
display_name: Test Object 1 display_name: Test Object 1
- object_id: -20 - object_id: 20
display_name: Test Object 2 display_name: Test Object 2
- object_id: -30 - object_id: 30
display_name: Test Object 3 display_name: Test Object 3
- object_id: -40 - object_id: 40
display_name: Test Object 4 display_name: Test Object 4
ccm_core.permissions: ccm_core.permissions:
- permission_id: -10 - permission_id: 10
creation_date: '2015-07-29 14:32:46' creation_date: '2015-07-29 14:32:46'
granted_privilege_id: -10 granted_privilege_id: 10
grantee_id: -20 grantee_id: 20
- permission_id: -20 - permission_id: 20
creation_date: '2015-07-29 14:34:30' creation_date: '2015-07-29 14:34:30'
granted_privilege_id: -20 granted_privilege_id: 20
grantee_id: -30 grantee_id: 30
object_id: -10 object_id: 10
- permission_id: -30 - permission_id: 30
creation_date: '2015-07-29 14:36:05' creation_date: '2015-07-29 14:36:05'
granted_privilege_id: -30 granted_privilege_id: 30
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
- permission_id: -35 - permission_id: 35
creation_date: '2015-07-29 14:57:55' creation_date: '2015-07-29 14:57:55'
granted_privilege_id: -20 granted_privilege_id: 20
grantee_id: -40 grantee_id: 40
object_id: -10 object_id: 10
- permission_id: -40 - permission_id: 40
creation_date: '2015-07-29 14:37:22' creation_date: '2015-07-29 14:37:22'
granted_privilege_id: -20 granted_privilege_id: 20
grantee_id: -10 grantee_id: 10
object_id: -20 object_id: 20

View File

@ -2,19 +2,19 @@
"ccm_core.ccm_privileges": "ccm_core.ccm_privileges":
[ [
{ {
"privilege_id": -10, "privilege_id": 10,
"label": "admin" "label": "admin"
}, },
{ {
"privilege_id": -20, "privilege_id": 20,
"label": "read" "label": "read"
}, },
{ {
"privilege_id": -30, "privilege_id": 30,
"label": "write" "label": "write"
}, },
{ {
"privilege_id": -40, "privilege_id": 40,
"label": "publish" "label": "publish"
} }
] ]

View File

@ -1,10 +1,10 @@
--- ---
ccm_core.ccm_privileges: ccm_core.ccm_privileges:
- privilege_id: -10 - privilege_id: 10
label: admin label: admin
- privilege_id: -20 - privilege_id: 20
label: read label: read
- privilege_id: -30 - privilege_id: 30
label: write label: write
- privilege_id: -40 - privilege_id: 40
label: publish label: publish

View File

@ -2,11 +2,11 @@
"ccm_core.ccm_privileges": "ccm_core.ccm_privileges":
[ [
{ {
"privilege_id": -10, "privilege_id": 10,
"label": "admin" "label": "admin"
}, },
{ {
"privilege_id": -20, "privilege_id": 20,
"label": "read" "label": "read"
} }
] ]

View File

@ -1,6 +1,6 @@
--- ---
ccm_core.ccm_privileges: ccm_core.ccm_privileges:
- privilege_id: -10 - privilege_id: 10
label: admin label: admin
- privilege_id: -20 - privilege_id: 20
label: read label: read

View File

@ -2,15 +2,15 @@
"ccm_core.ccm_privileges": "ccm_core.ccm_privileges":
[ [
{ {
"privilege_id": -10, "privilege_id": 10,
"label": "admin" "label": "admin"
}, },
{ {
"privilege_id": -20, "privilege_id": 20,
"label": "read" "label": "read"
}, },
{ {
"privilege_id": -30, "privilege_id": 30,
"label": "write" "label": "write"
} }
] ]

View File

@ -1,8 +1,8 @@
--- ---
ccm_core.ccm_privileges: ccm_core.ccm_privileges:
- privilege_id: -10 - privilege_id: 10
label: admin label: admin
- privilege_id: -20 - privilege_id: 20
label: read label: read
- privilege_id: -30 - privilege_id: 30
label: write label: write

View File

@ -2,122 +2,122 @@
"ccm_core.subjects": "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": "ccm_core.ccm_groups":
[ [
{ {
"name": "Site-wide Administrators", "name": "Site-wide Administrators",
"subject_id": -10 "subject_id": 10
}, },
{ {
"name": "info Administration", "name": "info Administration",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "info Viewers", "name": "info Viewers",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "info Administration Author", "name": "info Administration Author",
"subject_id": -40 "subject_id": 40
}, },
{ {
"name": "info Administration Editor", "name": "info Administration Editor",
"subject_id": -50 "subject_id": 50
}, },
{ {
"name": "info Administration Publisher", "name": "info Administration Publisher",
"subject_id": -60 "subject_id": 60
}, },
{ {
"name": "info Administration Manager", "name": "info Administration Manager",
"subject_id": -70 "subject_id": 70
}, },
{ {
"name": "info Administration Trusted User", "name": "info Administration Trusted User",
"subject_id": -80 "subject_id": 80
}, },
{ {
"name": "info Viewers Content Reader", "name": "info Viewers Content Reader",
"subject_id": -90 "subject_id": 90
}, },
{ {
"name": "info Administration Alert Recipient", "name": "info Administration Alert Recipient",
"subject_id": -100 "subject_id": 100
} }
], ],
"ccm_core.ccm_roles": "ccm_core.ccm_roles":
[ [
{ {
"role_id": -10, "role_id": 10,
"description": "Creates new content", "description": "Creates new content",
"name": "Author", "name": "Author",
"implicit_group_id": -40, "implicit_group_id": 40,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -20, "role_id": 20,
"description": "Reviews and approves the author's work", "description": "Reviews and approves the author's work",
"name": "Editor", "name": "Editor",
"implicit_group_id": -50, "implicit_group_id": 50,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -30, "role_id": 30,
"description": "Deploys the content to the web site", "description": "Deploys the content to the web site",
"name": "Publisher", "name": "Publisher",
"implicit_group_id": -60, "implicit_group_id": 60,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -40, "role_id": 40,
"description": "Manages the overall content section", "description": "Manages the overall content section",
"name": "Manager", "name": "Manager",
"implicit_group_id": -70, "implicit_group_id": 70,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -60, "role_id": 60,
"description": "Can view published pages within this section", "description": "Can view published pages within this section",
"name": "Content Reader", "name": "Content Reader",
"implicit_group_id": -90, "implicit_group_id": 90,
"source_group_id": -30 "source_group_id": 30
}, },
{ {
"role_id": -70, "role_id": 70,
"description": "Receive alerts regarding expiration of published content", "description": "Receive alerts regarding expiration of published content",
"name": "Alert Recipient", "name": "Alert Recipient",
"implicit_group_id": -100, "implicit_group_id": 100,
"source_group_id": -30 "source_group_id": 30
} }
] ]

View File

@ -1,64 +1,64 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_groups:
- name: Site-wide Administrators - name: Site-wide Administrators
subject_id: -10 subject_id: 10
- name: info Administration - name: info Administration
subject_id: -20 subject_id: 20
- name: info Viewers - name: info Viewers
subject_id: -30 subject_id: 30
- name: info Administration Author - name: info Administration Author
subject_id: -40 subject_id: 40
- name: info Administration Editor - name: info Administration Editor
subject_id: -50 subject_id: 50
- name: info Administration Publisher - name: info Administration Publisher
subject_id: -60 subject_id: 60
- name: info Administration Manager - name: info Administration Manager
subject_id: -70 subject_id: 70
- name: info Administration Trusted User - name: info Administration Trusted User
subject_id: -80 subject_id: 80
- name: info Viewers Content Reader - name: info Viewers Content Reader
subject_id: -90 subject_id: 90
- name: info Administration Alert Recipient - name: info Administration Alert Recipient
subject_id: -100 subject_id: 100
ccm_core.ccm_roles: ccm_core.ccm_roles:
- role_id: -10 - role_id: 10
description: Creates new content description: Creates new content
name: Author name: Author
implicit_group_id: -40 implicit_group_id: 40
source_group_id: -20 source_group_id: 20
- role_id: -20 - role_id: 20
description: Reviews and approves the author's work description: Reviews and approves the author's work
name: Editor name: Editor
implicit_group_id: -50 implicit_group_id: 50
source_group_id: -20 source_group_id: 20
- role_id: -30 - role_id: 30
description: Deploys the content to the web site description: Deploys the content to the web site
name: Publisher name: Publisher
implicit_group_id: -60 implicit_group_id: 60
source_group_id: -20 source_group_id: 20
- role_id: -40 - role_id: 40
description: Manages the overall content section description: Manages the overall content section
name: Manager name: Manager
implicit_group_id: -70 implicit_group_id: 70
source_group_id: -20 source_group_id: 20
- role_id: -60 - role_id: 60
description: Can view published pages within this section description: Can view published pages within this section
name: Content Reader name: Content Reader
implicit_group_id: -90 implicit_group_id: 90
source_group_id: -30 source_group_id: 30
- role_id: -70 - role_id: 70
description: Receive alerts regarding expiration of published content description: Receive alerts regarding expiration of published content
name: Alert Recipient name: Alert Recipient
implicit_group_id: -100 implicit_group_id: 100
source_group_id: -30 source_group_id: 30

View File

@ -2,129 +2,129 @@
"ccm_core.subjects": "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": "ccm_core.ccm_groups":
[ [
{ {
"name": "Site-wide Administrators", "name": "Site-wide Administrators",
"subject_id": -10 "subject_id": 10
}, },
{ {
"name": "info Administration", "name": "info Administration",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "info Viewers", "name": "info Viewers",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "info Administration Author", "name": "info Administration Author",
"subject_id": -40 "subject_id": 40
}, },
{ {
"name": "info Administration Editor", "name": "info Administration Editor",
"subject_id": -50 "subject_id": 50
}, },
{ {
"name": "info Administration Publisher", "name": "info Administration Publisher",
"subject_id": -60 "subject_id": 60
}, },
{ {
"name": "info Administration Manager", "name": "info Administration Manager",
"subject_id": -70 "subject_id": 70
}, },
{ {
"name": "info Administration Trusted User", "name": "info Administration Trusted User",
"subject_id": -80 "subject_id": 80
}, },
{ {
"name": "info Viewers Content Reader", "name": "info Viewers Content Reader",
"subject_id": -90 "subject_id": 90
}, },
{ {
"name": "info Administration Alert Recipient", "name": "info Administration Alert Recipient",
"subject_id": -100 "subject_id": 100
} }
], ],
"ccm_core.ccm_roles": "ccm_core.ccm_roles":
[ [
{ {
"role_id": -10, "role_id": 10,
"description": "Creates new content", "description": "Creates new content",
"name": "Author", "name": "Author",
"implicit_group_id": -40, "implicit_group_id": 40,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -20, "role_id": 20,
"description": "Reviews and approves the author's work", "description": "Reviews and approves the author's work",
"name": "Editor", "name": "Editor",
"implicit_group_id": -50, "implicit_group_id": 50,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -30, "role_id": 30,
"description": "Deploys the content to the web site", "description": "Deploys the content to the web site",
"name": "Publisher", "name": "Publisher",
"implicit_group_id": -60, "implicit_group_id": 60,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -40, "role_id": 40,
"description": "Manages the overall content section", "description": "Manages the overall content section",
"name": "Manager", "name": "Manager",
"implicit_group_id": -70, "implicit_group_id": 70,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -50, "role_id": 50,
"description": "A trusted user is allowed to create and publish items without review", "description": "A trusted user is allowed to create and publish items without review",
"name": "Trusted User", "name": "Trusted User",
"implicit_group_id": -80, "implicit_group_id": 80,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -60, "role_id": 60,
"description": "Can view published pages within this section", "description": "Can view published pages within this section",
"name": "Reader", "name": "Reader",
"implicit_group_id": -90, "implicit_group_id": 90,
"source_group_id": -30 "source_group_id": 30
}, },
{ {
"role_id": -70, "role_id": 70,
"description": "Receive alerts regarding expiration of published content", "description": "Receive alerts regarding expiration of published content",
"name": "Alert Recipient", "name": "Alert Recipient",
"implicit_group_id": -100, "implicit_group_id": 100,
"source_group_id": -30 "source_group_id": 30
} }
] ]

View File

@ -1,69 +1,69 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_groups:
- name: Site-wide Administrators - name: Site-wide Administrators
subject_id: -10 subject_id: 10
- name: info Administration - name: info Administration
subject_id: -20 subject_id: 20
- name: info Viewers - name: info Viewers
subject_id: -30 subject_id: 30
- name: info Administration Author - name: info Administration Author
subject_id: -40 subject_id: 40
- name: info Administration Editor - name: info Administration Editor
subject_id: -50 subject_id: 50
- name: info Administration Publisher - name: info Administration Publisher
subject_id: -60 subject_id: 60
- name: info Administration Manager - name: info Administration Manager
subject_id: -70 subject_id: 70
- name: info Administration Trusted User - name: info Administration Trusted User
subject_id: -80 subject_id: 80
- name: info Viewers Content Reader - name: info Viewers Content Reader
subject_id: -90 subject_id: 90
- name: info Administration Alert Recipient - name: info Administration Alert Recipient
subject_id: -100 subject_id: 100
ccm_core.ccm_roles: ccm_core.ccm_roles:
- role_id: -10 - role_id: 10
description: Creates new content description: Creates new content
name: Author name: Author
implicit_group_id: -40 implicit_group_id: 40
source_group_id: -20 source_group_id: 20
- role_id: -20 - role_id: 20
description: Reviews and approves the author's work description: Reviews and approves the author's work
name: Editor name: Editor
implicit_group_id: -50 implicit_group_id: 50
source_group_id: -20 source_group_id: 20
- role_id: -30 - role_id: 30
description: Deploys the content to the web site description: Deploys the content to the web site
name: Publisher name: Publisher
implicit_group_id: -60 implicit_group_id: 60
source_group_id: -20 source_group_id: 20
- role_id: -40 - role_id: 40
description: Manages the overall content section description: Manages the overall content section
name: Manager name: Manager
implicit_group_id: -70 implicit_group_id: 70
source_group_id: -20 source_group_id: 20
- role_id: -50 - role_id: 50
description: A trusted user is allowed to create and publish items without review description: A trusted user is allowed to create and publish items without review
name: Trusted User name: Trusted User
implicit_group_id: -80 implicit_group_id: 80
source_group_id: -20 source_group_id: 20
- role_id: -60 - role_id: 60
description: Can view published pages within this section description: Can view published pages within this section
name: Reader name: Reader
implicit_group_id: -90 implicit_group_id: 90
source_group_id: -30 source_group_id: 30
- role_id: -70 - role_id: 70
description: Receive alerts regarding expiration of published content description: Receive alerts regarding expiration of published content
name: Alert Recipient name: Alert Recipient
implicit_group_id: -100 implicit_group_id: 100
source_group_id: -30 source_group_id: 30

View File

@ -2,136 +2,136 @@
"ccm_core.subjects": "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": "ccm_core.ccm_groups":
[ [
{ {
"name": "Site-wide Administrators", "name": "Site-wide Administrators",
"subject_id": -10 "subject_id": 10
}, },
{ {
"name": "info Administration", "name": "info Administration",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "info Viewers", "name": "info Viewers",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "info Administration Author", "name": "info Administration Author",
"subject_id": -40 "subject_id": 40
}, },
{ {
"name": "info Administration Editor", "name": "info Administration Editor",
"subject_id": -50 "subject_id": 50
}, },
{ {
"name": "info Administration Publisher", "name": "info Administration Publisher",
"subject_id": -60 "subject_id": 60
}, },
{ {
"name": "info Administration Manager", "name": "info Administration Manager",
"subject_id": -70 "subject_id": 70
}, },
{ {
"name": "info Administration Trusted User", "name": "info Administration Trusted User",
"subject_id": -80 "subject_id": 80
}, },
{ {
"name": "info Viewers Content Reader", "name": "info Viewers Content Reader",
"subject_id": -90 "subject_id": 90
}, },
{ {
"name": "info Administration Alert Recipient", "name": "info Administration Alert Recipient",
"subject_id": -100 "subject_id": 100
} }
], ],
"ccm_core.ccm_roles": "ccm_core.ccm_roles":
[ [
{ {
"role_id": -10, "role_id": 10,
"description": "Creates new content", "description": "Creates new content",
"name": "Author", "name": "Author",
"implicit_group_id": -40, "implicit_group_id": 40,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -20, "role_id": 20,
"description": "Reviews and approves the author's work", "description": "Reviews and approves the author's work",
"name": "Editor", "name": "Editor",
"implicit_group_id": -50, "implicit_group_id": 50,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -30, "role_id": 30,
"description": "Deploys the content to the web site", "description": "Deploys the content to the web site",
"name": "Publisher", "name": "Publisher",
"implicit_group_id": -60, "implicit_group_id": 60,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -40, "role_id": 40,
"description": "Manages the overall content section", "description": "Manages the overall content section",
"name": "Manager", "name": "Manager",
"implicit_group_id": -70, "implicit_group_id": 70,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -50, "role_id": 50,
"description": "A trusted user is allowed to create and publish items without review", "description": "A trusted user is allowed to create and publish items without review",
"name": "Trusted User", "name": "Trusted User",
"implicit_group_id": -80, "implicit_group_id": 80,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -60, "role_id": 60,
"description": "Can view published pages within this section", "description": "Can view published pages within this section",
"name": "Content Reader", "name": "Content Reader",
"implicit_group_id": -90, "implicit_group_id": 90,
"source_group_id": -30 "source_group_id": 30
}, },
{ {
"role_id": -70, "role_id": 70,
"description": "Receive alerts regarding expiration of published content", "description": "Receive alerts regarding expiration of published content",
"name": "Alert Recipient", "name": "Alert Recipient",
"implicit_group_id": -100, "implicit_group_id": 100,
"source_group_id": -30 "source_group_id": 30
}, },
{ {
"role_id": -80, "role_id": 80,
"description": "New role for testing", "description": "New role for testing",
"name": "Test", "name": "Test",
"implicit_group_id": -20, "implicit_group_id": 20,
"source_group_id": -90 "source_group_id": 90
} }
] ]
} }

View File

@ -1,74 +1,74 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_groups:
- name: Site-wide Administrators - name: Site-wide Administrators
subject_id: -10 subject_id: 10
- name: info Administration - name: info Administration
subject_id: -20 subject_id: 20
- name: info Viewers - name: info Viewers
subject_id: -30 subject_id: 30
- name: info Administration Author - name: info Administration Author
subject_id: -40 subject_id: 40
- name: info Administration Editor - name: info Administration Editor
subject_id: -50 subject_id: 50
- name: info Administration Publisher - name: info Administration Publisher
subject_id: -60 subject_id: 60
- name: info Administration Manager - name: info Administration Manager
subject_id: -70 subject_id: 70
- name: info Administration Trusted User - name: info Administration Trusted User
subject_id: -80 subject_id: 80
- name: info Viewers Content Reader - name: info Viewers Content Reader
subject_id: -90 subject_id: 90
- name: info Administration Alert Recipient - name: info Administration Alert Recipient
subject_id: -100 subject_id: 100
ccm_core.ccm_roles: ccm_core.ccm_roles:
- role_id: -10 - role_id: 10
description: Creates new content description: Creates new content
name: Author name: Author
implicit_group_id: -40 implicit_group_id: 40
source_group_id: -20 source_group_id: 20
- role_id: -20 - role_id: 20
description: Reviews and approves the author's work description: Reviews and approves the author's work
name: Editor name: Editor
implicit_group_id: -50 implicit_group_id: 50
source_group_id: -20 source_group_id: 20
- role_id: -30 - role_id: 30
description: Deploys the content to the web site description: Deploys the content to the web site
name: Publisher name: Publisher
implicit_group_id: -60 implicit_group_id: 60
source_group_id: -20 source_group_id: 20
- role_id: -40 - role_id: 40
description: Manages the overall content section description: Manages the overall content section
name: Manager name: Manager
implicit_group_id: -70 implicit_group_id: 70
source_group_id: -20 source_group_id: 20
- role_id: -50 - role_id: 50
description: A trusted user is allowed to create and publish items without review description: A trusted user is allowed to create and publish items without review
name: Trusted User name: Trusted User
implicit_group_id: -80 implicit_group_id: 80
source_group_id: -20 source_group_id: 20
- role_id: -60 - role_id: 60
description: Can view published pages within this section description: Can view published pages within this section
name: Content Reader name: Content Reader
implicit_group_id: -90 implicit_group_id: 90
source_group_id: -30 source_group_id: 30
- role_id: -70 - role_id: 70
description: Receive alerts regarding expiration of published content description: Receive alerts regarding expiration of published content
name: Alert Recipient name: Alert Recipient
implicit_group_id: -100 implicit_group_id: 100
source_group_id: -30 source_group_id: 30
- role_id: -80 - role_id: 80
description: New role for testing description: New role for testing
name: Test name: Test
implicit_group_id: -20 implicit_group_id: 20
source_group_id: -90 source_group_id: 90

View File

@ -2,129 +2,129 @@
"ccm_core.subjects": "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": "ccm_core.ccm_groups":
[ [
{ {
"name": "Site-wide Administrators", "name": "Site-wide Administrators",
"subject_id": -10 "subject_id": 10
}, },
{ {
"name": "info Administration", "name": "info Administration",
"subject_id": -20 "subject_id": 20
}, },
{ {
"name": "info Viewers", "name": "info Viewers",
"subject_id": -30 "subject_id": 30
}, },
{ {
"name": "info Administration Author", "name": "info Administration Author",
"subject_id": -40 "subject_id": 40
}, },
{ {
"name": "info Administration Editor", "name": "info Administration Editor",
"subject_id": -50 "subject_id": 50
}, },
{ {
"name": "info Administration Publisher", "name": "info Administration Publisher",
"subject_id": -60 "subject_id": 60
}, },
{ {
"name": "info Administration Manager", "name": "info Administration Manager",
"subject_id": -70 "subject_id": 70
}, },
{ {
"name": "info Administration Trusted User", "name": "info Administration Trusted User",
"subject_id": -80 "subject_id": 80
}, },
{ {
"name": "info Viewers Content Reader", "name": "info Viewers Content Reader",
"subject_id": -90 "subject_id": 90
}, },
{ {
"name": "info Administration Alert Recipient", "name": "info Administration Alert Recipient",
"subject_id": -100 "subject_id": 100
} }
], ],
"ccm_core.ccm_roles": "ccm_core.ccm_roles":
[ [
{ {
"role_id": -10, "role_id": 10,
"description": "Creates new content", "description": "Creates new content",
"name": "Author", "name": "Author",
"implicit_group_id": -40, "implicit_group_id": 40,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -20, "role_id": 20,
"description": "Reviews and approves the author's work", "description": "Reviews and approves the author's work",
"name": "Editor", "name": "Editor",
"implicit_group_id": -50, "implicit_group_id": 50,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -30, "role_id": 30,
"description": "Deploys the content to the web site", "description": "Deploys the content to the web site",
"name": "Publisher", "name": "Publisher",
"implicit_group_id": -60, "implicit_group_id": 60,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -40, "role_id": 40,
"description": "Manages the overall content section", "description": "Manages the overall content section",
"name": "Manager", "name": "Manager",
"implicit_group_id": -70, "implicit_group_id": 70,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -50, "role_id": 50,
"description": "A trusted user is allowed to create and publish items without review", "description": "A trusted user is allowed to create and publish items without review",
"name": "Trusted User", "name": "Trusted User",
"implicit_group_id": -80, "implicit_group_id": 80,
"source_group_id": -20 "source_group_id": 20
}, },
{ {
"role_id": -60, "role_id": 60,
"description": "Can view published pages within this section", "description": "Can view published pages within this section",
"name": "Content Reader", "name": "Content Reader",
"implicit_group_id": -90, "implicit_group_id": 90,
"source_group_id": -30 "source_group_id": 30
}, },
{ {
"role_id": -70, "role_id": 70,
"description": "Receive alerts regarding expiration of published content", "description": "Receive alerts regarding expiration of published content",
"name": "Alert Recipient", "name": "Alert Recipient",
"implicit_group_id": -100, "implicit_group_id": 100,
"source_group_id": -30 "source_group_id": 30
} }
] ]

View File

@ -1,69 +1,69 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_groups:
- name: Site-wide Administrators - name: Site-wide Administrators
subject_id: -10 subject_id: 10
- name: info Administration - name: info Administration
subject_id: -20 subject_id: 20
- name: info Viewers - name: info Viewers
subject_id: -30 subject_id: 30
- name: info Administration Author - name: info Administration Author
subject_id: -40 subject_id: 40
- name: info Administration Editor - name: info Administration Editor
subject_id: -50 subject_id: 50
- name: info Administration Publisher - name: info Administration Publisher
subject_id: -60 subject_id: 60
- name: info Administration Manager - name: info Administration Manager
subject_id: -70 subject_id: 70
- name: info Administration Trusted User - name: info Administration Trusted User
subject_id: -80 subject_id: 80
- name: info Viewers Content Reader - name: info Viewers Content Reader
subject_id: -90 subject_id: 90
- name: info Administration Alert Recipient - name: info Administration Alert Recipient
subject_id: -100 subject_id: 100
ccm_core.ccm_roles: ccm_core.ccm_roles:
- role_id: -10 - role_id: 10
description: Creates new content description: Creates new content
name: Author name: Author
implicit_group_id: -40 implicit_group_id: 40
source_group_id: -20 source_group_id: 20
- role_id: -20 - role_id: 20
description: Reviews and approves the author's work description: Reviews and approves the author's work
name: Editor name: Editor
implicit_group_id: -50 implicit_group_id: 50
source_group_id: -20 source_group_id: 20
- role_id: -30 - role_id: 30
description: Deploys the content to the web site description: Deploys the content to the web site
name: Publisher name: Publisher
implicit_group_id: -60 implicit_group_id: 60
source_group_id: -20 source_group_id: 20
- role_id: -40 - role_id: 40
description: Manages the overall content section description: Manages the overall content section
name: Manager name: Manager
implicit_group_id: -70 implicit_group_id: 70
source_group_id: -20 source_group_id: 20
- role_id: -50 - role_id: 50
description: A trusted user is allowed to create and publish items without review description: A trusted user is allowed to create and publish items without review
name: Trusted User name: Trusted User
implicit_group_id: -80 implicit_group_id: 80
source_group_id: -20 source_group_id: 20
- role_id: -60 - role_id: 60
description: Can view published pages within this section description: Can view published pages within this section
name: Content Reader name: Content Reader
implicit_group_id: -90 implicit_group_id: 90
source_group_id: -30 source_group_id: 30
- role_id: -70 - role_id: 70
description: Receive alerts regarding expiration of published content description: Receive alerts regarding expiration of published content
name: Alert Recipient name: Alert Recipient
implicit_group_id: -100 implicit_group_id: 100
source_group_id: -30 source_group_id: 30

View File

@ -2,7 +2,7 @@
"ccm_core.subjects": "ccm_core.subjects":
[ [
{ {
"subject_id": -10 "subject_id": 10
} }
], ],
"ccm_core.ccm_users": "ccm_core.ccm_users":
@ -16,13 +16,13 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true

View File

@ -1,6 +1,6 @@
--- ---
ccm_core.subjects: ccm_core.subjects:
- subject_id: -10 - subject_id: 10
ccm_core.ccm_users: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -10,9 +10,9 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true

View File

@ -2,10 +2,10 @@
"ccm_core.subjects": "ccm_core.subjects":
[ [
{ {
"subject_id": -10 "subject_id": 10
}, },
{ {
"subject_id": -30 "subject_id": 30
} }
], ],
"ccm_core.ccm_users": "ccm_core.ccm_users":
@ -19,7 +19,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "axg8ira8fa", "salt": "axg8ira8fa",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -30,19 +30,19 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "axg8ira8fa", "salt": "axg8ira8fa",
"screen_name": "joe", "screen_name": "joe",
"subject_id": -30 "subject_id": 30
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -30, "user_id": 30,
"email_address": "joe.public@example.com", "email_address": "joe.public@example.com",
"bouncing": true, "bouncing": true,
"verified": false "verified": false

View File

@ -1,7 +1,7 @@
--- ---
ccm_core.subjects: ccm_core.subjects:
- subject_id: -10 - subject_id: 10
- subject_id: -30 - subject_id: 30
ccm_core.ccm_users: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: MD5 hash_algorithm: MD5
@ -12,7 +12,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: axg8ira8fa salt: axg8ira8fa
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Public family_name: Public
@ -22,13 +22,13 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: axg8ira8fa salt: axg8ira8fa
screen_name: joe screen_name: joe
subject_id: -30 subject_id: 30
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -30 - user_id: 30
email_address: joe.public@example.com email_address: joe.public@example.com
bouncing: true bouncing: true
verified: false verified: false

View File

@ -2,13 +2,13 @@
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -23,7 +23,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fafjiaddfja0a", "salt": "fafjiaddfja0a",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -34,7 +34,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fjiajhigafgapoa", "salt": "fjiajhigafgapoa",
"screen_name": "mmuster", "screen_name": "mmuster",
"subject_id": -20 "subject_id": 20
}, },
{ {
"banned": false, "banned": false,
@ -45,31 +45,31 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "axg8ira8fa", "salt": "axg8ira8fa",
"screen_name": "joe", "screen_name": "joe",
"subject_id": -30 "subject_id": 30
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "jd@example.com", "email_address": "jd@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -20, "user_id": 20,
"email_address": "max.mustermann@example.org", "email_address": "max.mustermann@example.org",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -20, "user_id": 20,
"email_address": "mm@example.com", "email_address": "mm@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -30, "user_id": 30,
"email_address": "joe.public@example.com", "email_address": "joe.public@example.com",
"bouncing": true, "bouncing": true,
"verified": false "verified": false

View File

@ -1,8 +1,8 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -14,7 +14,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fafjiaddfja0a salt: fafjiaddfja0a
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Mustermann family_name: Mustermann
@ -24,7 +24,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fjiajhigafgapoa salt: fjiajhigafgapoa
screen_name: mmuster screen_name: mmuster
subject_id: -20 subject_id: 20
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Public family_name: Public
@ -34,21 +34,21 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: axg8ira8fa salt: axg8ira8fa
screen_name: joe screen_name: joe
subject_id: -30 subject_id: 30
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: jd@example.com email_address: jd@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -20 - user_id: 20
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
bouncing: false bouncing: false
verified: true verified: true
- user_id: -20 - user_id: 20
email_address: mm@example.com email_address: mm@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -30 - user_id: 30
email_address: joe.public@example.com email_address: joe.public@example.com
bouncing: true bouncing: true
verified: false verified: false

View File

@ -2,16 +2,16 @@
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -25,7 +25,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "axg8ira8fa", "salt": "axg8ira8fa",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -36,7 +36,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fjiajhigafgapoa", "salt": "fjiajhigafgapoa",
"screen_name": "mmuster", "screen_name": "mmuster",
"subject_id": -20 "subject_id": 20
}, },
{ {
"banned": false, "banned": false,
@ -47,7 +47,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "axg8ira8fa", "salt": "axg8ira8fa",
"screen_name": "joe", "screen_name": "joe",
"subject_id": -30 "subject_id": 30
}, },
{ {
"banned": false, "banned": false,
@ -60,37 +60,37 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "maifgaoapafga9", "salt": "maifgaoapafga9",
"screen_name": "jane", "screen_name": "jane",
"subject_id": -40 "subject_id": 40
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -20, "user_id": 20,
"email_address": "max.mustermann@example.org", "email_address": "max.mustermann@example.org",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -20, "user_id": 20,
"email_address": "mm@example.com", "email_address": "mm@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -30, "user_id": 30,
"email_address": "joe.public@example.com", "email_address": "joe.public@example.com",
"bouncing": true, "bouncing": true,
"verified": false "verified": false
}, },
{ {
"user_id": -40, "user_id": 40,
"email_address": "jane.doe@example.org", "email_address": "jane.doe@example.org",
"bouncing": false, "bouncing": false,
"verified": false "verified": false

View File

@ -1,9 +1,9 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: MD5 hash_algorithm: MD5
@ -14,7 +14,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: axg8ira8fa salt: axg8ira8fa
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Mustermann family_name: Mustermann
@ -24,7 +24,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fjiajhigafgapoa salt: fjiajhigafgapoa
screen_name: mmuster screen_name: mmuster
subject_id: -20 subject_id: 20
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Public family_name: Public
@ -34,7 +34,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: axg8ira8fa salt: axg8ira8fa
screen_name: joe screen_name: joe
subject_id: -30 subject_id: 30
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Doe family_name: Doe
@ -46,25 +46,25 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: maifgaoapafga9 salt: maifgaoapafga9
screen_name: jane screen_name: jane
subject_id: -40 subject_id: 40
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -20 - user_id: 20
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
bouncing: false bouncing: false
verified: true verified: true
- user_id: -20 - user_id: 20
email_address: mm@example.com email_address: mm@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -30 - user_id: 30
email_address: joe.public@example.com email_address: joe.public@example.com
bouncing: true bouncing: true
verified: false verified: false
- user_id: -40 - user_id: 40
email_address: jane.doe@example.org email_address: jane.doe@example.org
bouncing: false bouncing: false
verified: false verified: false

View File

@ -2,13 +2,13 @@
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -22,7 +22,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "axg8ira8fa", "salt": "axg8ira8fa",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -33,7 +33,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fjiajhigafgapoa", "salt": "fjiajhigafgapoa",
"screen_name": "mmuster", "screen_name": "mmuster",
"subject_id": -20 "subject_id": 20
}, },
{ {
"banned": false, "banned": false,
@ -44,31 +44,31 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "axg8ira8fa", "salt": "axg8ira8fa",
"screen_name": "joe", "screen_name": "joe",
"subject_id": -30 "subject_id": 30
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -20, "user_id": 20,
"email_address": "max.mustermann@example.org", "email_address": "max.mustermann@example.org",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -20, "user_id": 20,
"email_address": "mm@example.com", "email_address": "mm@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -30, "user_id": 30,
"email_address": "max.mustermann@example.org", "email_address": "max.mustermann@example.org",
"bouncing": true, "bouncing": true,
"verified": false "verified": false

View File

@ -1,8 +1,8 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: MD5 hash_algorithm: MD5
@ -12,7 +12,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: axg8ira8fa salt: axg8ira8fa
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Mustermann family_name: Mustermann
@ -21,7 +21,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fjiajhigafgapoa salt: fjiajhigafgapoa
screen_name: mmuster screen_name: mmuster
subject_id: -20 subject_id: 20
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Public family_name: Public
@ -30,21 +30,21 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: axg8ira8fa salt: axg8ira8fa
screen_name: joe screen_name: joe
subject_id: -30 subject_id: 30
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -20 - user_id: 20
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
bouncing: false bouncing: false
verified: true verified: true
- user_id: -20 - user_id: 20
email_address: mm@example.com email_address: mm@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -30 - user_id: 30
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
bouncing: true bouncing: true
verified: false verified: false

View File

@ -2,13 +2,13 @@
"ccm_core.subjects": "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": "ccm_core.ccm_users":
@ -22,7 +22,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "axg8ira8fa", "salt": "axg8ira8fa",
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
}, },
{ {
"banned": false, "banned": false,
@ -33,7 +33,7 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "fjiajhigafgapoa", "salt": "fjiajhigafgapoa",
"screen_name": "mmuster", "screen_name": "mmuster",
"subject_id": -20 "subject_id": 20
}, },
{ {
"banned": false, "banned": false,
@ -44,31 +44,31 @@
"password_reset_required": false, "password_reset_required": false,
"salt": "axg8ira8fa", "salt": "axg8ira8fa",
"screen_name": "joe", "screen_name": "joe",
"subject_id": -30 "subject_id": 30
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "john.doe@example.com", "email_address": "john.doe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -20, "user_id": 20,
"email_address": "max.mustermann@example.org", "email_address": "max.mustermann@example.org",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -20, "user_id": 20,
"email_address": "mm@example.com", "email_address": "mm@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true
}, },
{ {
"user_id": -30, "user_id": 30,
"email_address": "joe.public@example.com", "email_address": "joe.public@example.com",
"bouncing": true, "bouncing": true,
"verified": false "verified": false

View File

@ -1,8 +1,8 @@
--- ---
ccm_core.subjects: 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: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: MD5 hash_algorithm: MD5
@ -13,7 +13,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: axg8ira8fa salt: axg8ira8fa
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Mustermann family_name: Mustermann
@ -23,7 +23,7 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: fjiajhigafgapoa salt: fjiajhigafgapoa
screen_name: mmuster screen_name: mmuster
subject_id: -20 subject_id: 20
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
family_name: Public family_name: Public
@ -33,21 +33,21 @@ ccm_core.ccm_users:
password_reset_required: false password_reset_required: false
salt: axg8ira8fa salt: axg8ira8fa
screen_name: joe screen_name: joe
subject_id: -30 subject_id: 30
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: john.doe@example.com email_address: john.doe@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -20 - user_id: 20
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
bouncing: false bouncing: false
verified: true verified: true
- user_id: -20 - user_id: 20
email_address: mm@example.com email_address: mm@example.com
bouncing: false bouncing: false
verified: true verified: true
- user_id: -30 - user_id: 30
email_address: joe.public@example.com email_address: joe.public@example.com
bouncing: true bouncing: true
verified: false verified: false

View File

@ -2,7 +2,7 @@
"ccm_core.subjects": "ccm_core.subjects":
[ [
{ {
"subject_id": -10 "subject_id": 10
} }
], ],
"ccm_core.ccm_users": "ccm_core.ccm_users":
@ -16,13 +16,13 @@
"salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==", "salt": "Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==",
"password_reset_required": false, "password_reset_required": false,
"screen_name": "jdoe", "screen_name": "jdoe",
"subject_id": -10 "subject_id": 10
} }
], ],
"ccm_core.user_email_addresses": "ccm_core.user_email_addresses":
[ [
{ {
"user_id": -10, "user_id": 10,
"email_address": "jdoe@example.com", "email_address": "jdoe@example.com",
"bouncing": false, "bouncing": false,
"verified": true "verified": true

View File

@ -1,6 +1,6 @@
--- ---
ccm_core.subjects: ccm_core.subjects:
- subject_id: -10 - subject_id: 10
ccm_core.ccm_users: ccm_core.ccm_users:
- banned: false - banned: false
hash_algorithm: SHA-512 hash_algorithm: SHA-512
@ -10,9 +10,9 @@ ccm_core.ccm_users:
salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA== salt: Fu8FPgqAal4GZp1hDjkOB+t6ITRCcO7HBoN5Xqf29UnVj5NUdUFZRTyKYMBEx6JmZGmHcMDG9OGVCKcEM9oyScSRreJs4B51wM44NM6KeRwbCf+VhBn14DkBrl40ygraNf+AJacKpMyCpFI0O/Am7mMDWL4flskBsylkxaQn3vKfzgN5MVG2szW//I6Q6YEH9AuL8LauS6fKaVynMzzu3xzD8Hjqvvlnzym898eom2lqScPfg5g4e8Ww13HCHAYe6twupAW/BjUNax5HSioEisZN/P1UGrde8uFEj+hbbavrWYZuilPuEu25+/98jyXx6542agqrWN8j0SFYcIyOgA==
password_reset_required: false password_reset_required: false
screen_name: jdoe screen_name: jdoe
subject_id: -10 subject_id: 10
ccm_core.user_email_addresses: ccm_core.user_email_addresses:
- user_id: -10 - user_id: 10
email_address: jdoe@example.com email_address: jdoe@example.com
bouncing: false bouncing: false
verified: true verified: true

View File

@ -1,21 +1,21 @@
ccm_core.parties: ccm_core.parties:
# Group 1 # Group 1
- party_id: -10 - party_id: 10
uuid: 7200c286-5045-4305-8f40-86cc078b5943 uuid: 7200c286-5045-4305-8f40-86cc078b5943
name: group-1 name: group-1
# Group 2 # Group 2
- party_id: -20 - party_id: 20
uuid: ebdc9a12-8f4e-48e8-92ec-900c65189895 uuid: ebdc9a12-8f4e-48e8-92ec-900c65189895
name: group-2 name: group-2
# Imported group # Imported group
- party_id: -100 - party_id: 100
uuid: 696592cd-db19-4aca-bb14-06490cfde243 uuid: 696592cd-db19-4aca-bb14-06490cfde243
name: department-23 name: department-23
ccm_core.groups: ccm_core.groups:
# Group 1 # Group 1
- party_id: -10 - party_id: 10
# Group 2 # Group 2
- party_id: -20 - party_id: 20
# Imported group # Imported group
- party_id: -100 - party_id: 100

View File

@ -1,14 +1,14 @@
ccm_core.parties: ccm_core.parties:
# Group 1 # Group 1
- party_id: -10 - party_id: 10
uuid: 7200c286-5045-4305-8f40-86cc078b5943 uuid: 7200c286-5045-4305-8f40-86cc078b5943
name: group-1 name: group-1
# Group 2 # Group 2
- party_id: -20 - party_id: 20
uuid: ebdc9a12-8f4e-48e8-92ec-900c65189895 uuid: ebdc9a12-8f4e-48e8-92ec-900c65189895
name: group-2 name: group-2
ccm_core.groups: ccm_core.groups:
# Group 1 # Group 1
- party_id: -10 - party_id: 10
# Group 2 # Group 2
- party_id: -20 - party_id: 20

View File

@ -1,22 +1,22 @@
ccm_core.parties: ccm_core.parties:
# John Doe # John Doe
- party_id: -10 - party_id: 10
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: jdoe name: jdoe
# Max Muster # Max Muster
- party_id: -20 - party_id: 20
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: mmuster name: mmuster
# Joe Public # Joe Public
- party_id: -30 - party_id: 30
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: joe name: joe
# Group 1 # Group 1
- party_id: -100 - party_id: 100
uuid: 7200c286-5045-4305-8f40-86cc078b5943 uuid: 7200c286-5045-4305-8f40-86cc078b5943
name: group-1 name: group-1
# Group 2 # Group 2
- party_id: -200 - party_id: 200
uuid: ebdc9a12-8f4e-48e8-92ec-900c65189895 uuid: ebdc9a12-8f4e-48e8-92ec-900c65189895
name: group-2 name: group-2
ccm_core.users: ccm_core.users:
@ -26,7 +26,7 @@ ccm_core.users:
email_address: john.doe@example.com email_address: john.doe@example.com
family_name: Doe family_name: Doe
given_name: John given_name: John
party_id: -10 party_id: 10
# foo123 # foo123
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA== password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
password_reset_required: false password_reset_required: false
@ -37,7 +37,7 @@ ccm_core.users:
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
family_name: Mustermann family_name: Mustermann
given_name: Max given_name: Max
party_id: -20 party_id: 20
# foo123 # foo123
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q== password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
password_reset_required: false password_reset_required: false
@ -48,23 +48,23 @@ ccm_core.users:
email_address: joe.public@example.com email_address: joe.public@example.com
family_name: Public family_name: Public
given_name: Joe given_name: Joe
party_id: -30 party_id: 30
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw== password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
password_reset_required: false password_reset_required: false
verified: true verified: true
ccm_core.groups: ccm_core.groups:
# Group 1 # Group 1
- party_id: -100 - party_id: 100
# Group 2 # Group 2
- party_id: -200 - party_id: 200
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -1000 - membership_id: 1000
uuid: b32bd614-00b7-4f1e-b1a3-4fc53f230082 uuid: b32bd614-00b7-4f1e-b1a3-4fc53f230082
group_id: -200 group_id: 200
member_id: -30 member_id: 30
- membership_id: -2000 - membership_id: 2000
uuid: f8ac4073-447e-4bd6-ac96-3bf92bdc8ce7 uuid: f8ac4073-447e-4bd6-ac96-3bf92bdc8ce7
group_id: -100 group_id: 100
member_id: -10 member_id: 10

View File

@ -1,22 +1,22 @@
ccm_core.parties: ccm_core.parties:
# John Doe # John Doe
- party_id: -10 - party_id: 10
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: jdoe name: jdoe
# Max Muster # Max Muster
- party_id: -20 - party_id: 20
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: mmuster name: mmuster
# Joe Public # Joe Public
- party_id: -30 - party_id: 30
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: joe name: joe
# Group 1 # Group 1
- party_id: -100 - party_id: 100
uuid: 7200c286-5045-4305-8f40-86cc078b5943 uuid: 7200c286-5045-4305-8f40-86cc078b5943
name: group-1 name: group-1
# Group 2 # Group 2
- party_id: -200 - party_id: 200
uuid: ebdc9a12-8f4e-48e8-92ec-900c65189895 uuid: ebdc9a12-8f4e-48e8-92ec-900c65189895
name: group-2 name: group-2
ccm_core.users: ccm_core.users:
@ -26,7 +26,7 @@ ccm_core.users:
email_address: john.doe@example.com email_address: john.doe@example.com
family_name: Doe family_name: Doe
given_name: John given_name: John
party_id: -10 party_id: 10
# foo123 # foo123
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA== password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
password_reset_required: false password_reset_required: false
@ -37,7 +37,7 @@ ccm_core.users:
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
family_name: Mustermann family_name: Mustermann
given_name: Max given_name: Max
party_id: -20 party_id: 20
# foo123 # foo123
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q== password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
password_reset_required: false password_reset_required: false
@ -48,18 +48,18 @@ ccm_core.users:
email_address: joe.public@example.com email_address: joe.public@example.com
family_name: Public family_name: Public
given_name: Joe given_name: Joe
party_id: -30 party_id: 30
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw== password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
password_reset_required: false password_reset_required: false
verified: true verified: true
ccm_core.groups: ccm_core.groups:
# Group 1 # Group 1
- party_id: -100 - party_id: 100
# Group 2 # Group 2
- party_id: -200 - party_id: 200
ccm_core.group_memberships: ccm_core.group_memberships:
- membership_id: -1000 - membership_id: 1000
uuid: b32bd614-00b7-4f1e-b1a3-4fc53f230082 uuid: b32bd614-00b7-4f1e-b1a3-4fc53f230082
group_id: -200 group_id: 200
member_id: -30 member_id: 30

View File

@ -1,18 +1,18 @@
ccm_core.parties: ccm_core.parties:
# John Doe # John Doe
- party_id: -10 - party_id: 10
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: jdoe name: jdoe
# Max Muster # Max Muster
- party_id: -20 - party_id: 20
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: mmuster name: mmuster
# Joe Public # Joe Public
- party_id: -30 - party_id: 30
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: joe name: joe
# Jane Doe # Jane Doe
- party_id: -40 - party_id: 40
uuid: 7cb9aba4-8071-4f27-af19-096e1473d050 uuid: 7cb9aba4-8071-4f27-af19-096e1473d050
name: janedoe name: janedoe
ccm_core.users: ccm_core.users:
@ -22,7 +22,7 @@ ccm_core.users:
email_address: john.doe@example.com email_address: john.doe@example.com
family_name: Doe family_name: Doe
given_name: John given_name: John
party_id: -10 party_id: 10
# foo123 # foo123
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA== password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
password_reset_required: false password_reset_required: false
@ -33,7 +33,7 @@ ccm_core.users:
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
family_name: Mustermann family_name: Mustermann
given_name: Max given_name: Max
party_id: -20 party_id: 20
# foo123 # foo123
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q== password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
password_reset_required: false password_reset_required: false
@ -44,7 +44,7 @@ ccm_core.users:
email_address: joe.public@example.com email_address: joe.public@example.com
family_name: Public family_name: Public
given_name: Joe given_name: Joe
party_id: -30 party_id: 30
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw== password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
password_reset_required: false password_reset_required: false
verified: true verified: true
@ -54,7 +54,7 @@ ccm_core.users:
email_address: jane.doe@libreccm.example email_address: jane.doe@libreccm.example
family_name: Doe family_name: Doe
given_name: Jane given_name: Jane
party_id: -40 party_id: 40
password: ofafodafa password: ofafodafa
password_reset_required: false password_reset_required: false
verified: true verified: true

View File

@ -1,14 +1,14 @@
ccm_core.parties: ccm_core.parties:
# John Doe # John Doe
- party_id: -10 - party_id: 10
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: jdoe name: jdoe
# Max Muster # Max Muster
- party_id: -20 - party_id: 20
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: mmuster name: mmuster
# Joe Public # Joe Public
- party_id: -30 - party_id: 30
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: joe name: joe
ccm_core.users: ccm_core.users:
@ -18,7 +18,7 @@ ccm_core.users:
email_address: john.doe@example.com email_address: john.doe@example.com
family_name: Doe family_name: Doe
given_name: John given_name: John
party_id: -10 party_id: 10
# foo123 # foo123
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA== password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
password_reset_required: false password_reset_required: false
@ -29,7 +29,7 @@ ccm_core.users:
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
family_name: Mustermann family_name: Mustermann
given_name: Max given_name: Max
party_id: -20 party_id: 20
# foo123 # foo123
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q== password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
password_reset_required: false password_reset_required: false
@ -40,7 +40,7 @@ ccm_core.users:
email_address: joe.public@example.com email_address: joe.public@example.com
family_name: Public family_name: Public
given_name: Joe given_name: Joe
party_id: -30 party_id: 30
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw== password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
password_reset_required: false password_reset_required: false
verified: true verified: true

View File

@ -1,23 +1,23 @@
ccm_core.settings: ccm_core.settings:
- setting_id: -100 - setting_id: 100
configuration_class: org.libreccm.configuration.ExampleConfiguration configuration_class: org.libreccm.configuration.ExampleConfiguration
name: enabled name: enabled
setting_value_boolean: true setting_value_boolean: true
dtype: BooleanSetting dtype: BooleanSetting
- setting_id: -110 - setting_id: 110
configuration_class: org.libreccm.configuration.ExampleConfiguration configuration_class: org.libreccm.configuration.ExampleConfiguration
name: itemsPerPage name: itemsPerPage
setting_value_long: 100 setting_value_long: 100
dtype: LongSetting dtype: LongSetting
- setting_id: -120 - setting_id: 120
configuration_class: org.libreccm.configuration.ExampleConfiguration configuration_class: org.libreccm.configuration.ExampleConfiguration
name: title name: title
dtype: LocalizedStringSetting dtype: LocalizedStringSetting
ccm_core.settings_l10n_str_values: ccm_core.settings_l10n_str_values:
- entry_id: -120 - entry_id: 120
locale: de locale: de
localized_value: Versuch localized_value: Versuch
- entry_id: -120 - entry_id: 120
locale: en locale: en
localized_value: Test localized_value: Test

View File

@ -1,26 +1,26 @@
ccm_core.parties: ccm_core.parties:
# John Doe # John Doe
- party_id: -10 - party_id": 10
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: jdoe name: jdoe
# Max Muster # Max Muster
- party_id: -20 - party_id": 20
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: mmuster name: mmuster
# Joe Public # Joe Public
- party_id: -30 - party_id": 30
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: joe name: joe
# admins # admins
- party_id: -40 - party_id": 40
uuid: 0fc446b7-a242-4407-9d04-b8ccaaa9dee5 uuid: 0fc446b7-a242-4407-9d04-b8ccaaa9dee5
name: admins name: admins
# users # users
- party_id: -50 - party_id": 50
uuid: 2082d7fc-8268-4195-8cbe-eb826b1afaeb uuid: 2082d7fc-8268-4195-8cbe-eb826b1afaeb
name: users name: users
# editors # editors
- party_id: -60 - party_id": 60
uuid: 176bfecc-c0fa-4e76-8935-5d6d0ec60e8c uuid: 176bfecc-c0fa-4e76-8935-5d6d0ec60e8c
name: editors name: editors
ccm_core.users: ccm_core.users:
@ -30,7 +30,7 @@ ccm_core.users:
email_address: john.doe@example.com email_address: john.doe@example.com
family_name: Doe family_name: Doe
given_name: John given_name: John
party_id: -10 party_id": 10
# foo123 # foo123
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA== password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
password_reset_required: false password_reset_required: false
@ -41,7 +41,7 @@ ccm_core.users:
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
family_name: Mustermann family_name: Mustermann
given_name: Max given_name: Max
party_id: -20 party_id": 20
# foo123 # foo123
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q== password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
password_reset_required: false password_reset_required: false
@ -52,45 +52,45 @@ ccm_core.users:
email_address: joe.public@example.com email_address: joe.public@example.com
family_name: Public family_name: Public
given_name: Joe given_name: Joe
party_id: -30 party_id": 30
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw== password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
password_reset_required: false password_reset_required: false
verified: true verified: true
ccm_core.groups: ccm_core.groups:
# admins # admins
- party_id: -40 - party_id": 40
# users # users
- party_id: -50 - party_id": 50
# editors # editors
- party_id: -60 - party_id": 60
ccm_core.group_memberships: ccm_core.group_memberships:
# admins <-> jdoe # admins <-> jdoe
- membership_id: -100 - membership_id": 100
uuid: 1f9dad0a-c51a-49e7-8720-c3c669cde67e uuid: 1f9dad0a-c51a-49e7-8720-c3c669cde67e
group_id: -40 group_id": 40
member_id: -10 member_id": 10
# users <-> mmuster # users <-> mmuster
- membership_id: -200 - membership_id": 200
uuid: 3837b1c2-b4e4-44b9-a92f-2330d76b51df uuid: 3837b1c2-b4e4-44b9-a92f-2330d76b51df
group_id: -50 group_id": 50
member_id: -20 member_id": 20
# users <-> joe # users <-> joe
- membership_id: -300 - membership_id": 300
uuid: cf8ffbc6-96d3-4e23-9503-4b396ea112aa uuid: cf8ffbc6-96d3-4e23-9503-4b396ea112aa
group_id: -50 group_id": 50
member_id: -30 member_id": 30
# editors <-> joe # editors <-> joe
- membership_id: -400 - membership_id": 400
uuid: 610ad227-cc55-4a8f-b532-3a5204f9d2dd uuid: 610ad227-cc55-4a8f-b532-3a5204f9d2dd
group_id: -60 group_id": 60
member_id: -30 member_id": 30
# admins <-> mmuster # admins <-> mmuster
- membership_id: -500 - membership_id": 500
uuid: 555657c8-e8ce-41e1-a327-f853901c8813 uuid: 555657c8-e8ce-41e1-a327-f853901c8813
group_id: -40 group_id": 40
member_id: -20 member_id": 20
# editors <-> jdoe # editors <-> jdoe
- membership_id: -600 - membership_id": 600
uuid: ed78b175-3ff3-4f34-8a5f-829e2113c593 uuid: ed78b175-3ff3-4f34-8a5f-829e2113c593
group_id: -60 group_id": 60
member_id: -10 member_id": 10

View File

@ -1,26 +1,26 @@
ccm_core.parties: ccm_core.parties:
# John Doe # John Doe
- party_id: -10 - party_id": 10
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: jdoe name: jdoe
# Max Muster # Max Muster
- party_id: -20 - party_id": 20
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: mmuster name: mmuster
# Joe Public # Joe Public
- party_id: -30 - party_id": 30
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: joe name: joe
# admins # admins
- party_id: -40 - party_id": 40
uuid: 0fc446b7-a242-4407-9d04-b8ccaaa9dee5 uuid: 0fc446b7-a242-4407-9d04-b8ccaaa9dee5
name: admins name: admins
# users # users
- party_id: -50 - party_id": 50
uuid: 2082d7fc-8268-4195-8cbe-eb826b1afaeb uuid: 2082d7fc-8268-4195-8cbe-eb826b1afaeb
name: users name: users
# editors # editors
- party_id: -60 - party_id": 60
uuid: 176bfecc-c0fa-4e76-8935-5d6d0ec60e8c uuid: 176bfecc-c0fa-4e76-8935-5d6d0ec60e8c
name: editors name: editors
ccm_core.users: ccm_core.users:
@ -30,7 +30,7 @@ ccm_core.users:
email_address: john.doe@example.com email_address: john.doe@example.com
family_name: Doe family_name: Doe
given_name: John given_name: John
party_id: -10 party_id": 10
# foo123 # foo123
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA== password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
password_reset_required: false password_reset_required: false
@ -41,7 +41,7 @@ ccm_core.users:
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
family_name: Mustermann family_name: Mustermann
given_name: Max given_name: Max
party_id: -20 party_id": 20
# foo123 # foo123
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q== password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
password_reset_required: false password_reset_required: false
@ -52,25 +52,25 @@ ccm_core.users:
email_address: joe.public@example.com email_address: joe.public@example.com
family_name: Public family_name: Public
given_name: Joe given_name: Joe
party_id: -30 party_id": 30
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw== password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
password_reset_required: false password_reset_required: false
verified: true verified: true
ccm_core.groups: ccm_core.groups:
# admins # admins
- party_id: -40 - party_id": 40
# users # users
- party_id: -50 - party_id": 50
# editors # editors
- party_id: -60 - party_id": 60
ccm_core.group_memberships: ccm_core.group_memberships:
# users <-> joe # users <-> joe
- membership_id: -300 - membership_id": 300
uuid: cf8ffbc6-96d3-4e23-9503-4b396ea112aa uuid: cf8ffbc6-96d3-4e23-9503-4b396ea112aa
group_id: -50 group_id": 50
member_id: -30 member_id": 30
# editors <-> joe # editors <-> joe
- membership_id: -400 - membership_id": 400
uuid: 610ad227-cc55-4a8f-b532-3a5204f9d2dd uuid: 610ad227-cc55-4a8f-b532-3a5204f9d2dd
group_id: -60 group_id": 60
member_id: -30 member_id": 30

View File

@ -1,26 +1,26 @@
ccm_core.parties: ccm_core.parties:
# John Doe # John Doe
- party_id: -10 - party_id": 10
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: jdoe name: jdoe
# Max Muster # Max Muster
- party_id: -20 - party_id": 20
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: mmuster name: mmuster
# Joe Public # Joe Public
- party_id: -30 - party_id": 30
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: joe name: joe
# admins # admins
- party_id: -40 - party_id": 40
uuid: 0fc446b7-a242-4407-9d04-b8ccaaa9dee5 uuid: 0fc446b7-a242-4407-9d04-b8ccaaa9dee5
name: admins name: admins
# users # users
- party_id: -50 - party_id": 50
uuid: 2082d7fc-8268-4195-8cbe-eb826b1afaeb uuid: 2082d7fc-8268-4195-8cbe-eb826b1afaeb
name: users name: users
# editors # editors
- party_id: -60 - party_id": 60
uuid: 176bfecc-c0fa-4e76-8935-5d6d0ec60e8c uuid: 176bfecc-c0fa-4e76-8935-5d6d0ec60e8c
name: editors name: editors
ccm_core.users: ccm_core.users:
@ -30,7 +30,7 @@ ccm_core.users:
email_address: john.doe@example.com email_address: john.doe@example.com
family_name: Doe family_name: Doe
given_name: John given_name: John
party_id: -10 party_id": 10
# foo123 # foo123
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA== password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
password_reset_required: false password_reset_required: false
@ -41,7 +41,7 @@ ccm_core.users:
email_address: max.mustermann@example.org email_address: max.mustermann@example.org
family_name: Mustermann family_name: Mustermann
given_name: Max given_name: Max
party_id: -20 party_id": 20
# foo123 # foo123
password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q== password: $shiro1$SHA-512$500000$Y7CnccN1h25sR7KCElMOXg==$CVLWBhetodaEzzhDfGjRcCFZtSW02xOnjH7xhBx0lbxO66grKIt6LWmXoUhLEydce1JZ7cbzNLYOxIwwTeqi5Q==
password_reset_required: false password_reset_required: false
@ -52,35 +52,35 @@ ccm_core.users:
email_address: joe.public@example.com email_address: joe.public@example.com
family_name: Public family_name: Public
given_name: Joe given_name: Joe
party_id: -30 party_id": 30
password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw== password: $shiro1$SHA-512$500000$RUCYXAQt+XzUmj3x8oG5gw==$qU+lX160Jc6sNUOI9X85wlf2lzn4/hLJNURtjmw9LOYJ7vAqUFFmhyNCMxpzuHIpzeMELr+A0XReoSmtcZnOOw==
password_reset_required: false password_reset_required: false
verified: true verified: true
ccm_core.groups: ccm_core.groups:
# admins # admins
- party_id: -40 - party_id": 40
# users # users
- party_id: -50 - party_id": 50
# editors # editors
- party_id: -60 - party_id": 60
ccm_core.group_memberships: ccm_core.group_memberships:
# admins <-> jdoe # admins <-> jdoe
- membership_id: -100 - membership_id": 100
uuid: 1f9dad0a-c51a-49e7-8720-c3c669cde67e uuid: 1f9dad0a-c51a-49e7-8720-c3c669cde67e
group_id: -40 group_id": 40
member_id: -10 member_id": 10
# users <-> mmuster # users <-> mmuster
- membership_id: -200 - membership_id": 200
uuid: 3837b1c2-b4e4-44b9-a92f-2330d76b51df uuid: 3837b1c2-b4e4-44b9-a92f-2330d76b51df
group_id: -50 group_id": 50
member_id: -20 member_id": 20
# users <-> joe # users <-> joe
- membership_id: -300 - membership_id": 300
uuid: cf8ffbc6-96d3-4e23-9503-4b396ea112aa uuid: cf8ffbc6-96d3-4e23-9503-4b396ea112aa
group_id: -50 group_id": 50
member_id: -30 member_id": 30
# editors <-> joe # editors <-> joe
- membership_id: -400 - membership_id": 400
uuid: 610ad227-cc55-4a8f-b532-3a5204f9d2dd uuid: 610ad227-cc55-4a8f-b532-3a5204f9d2dd
group_id: -60 group_id": 60
member_id: -30 member_id": 30

View File

@ -1,10 +1,10 @@
ccm_core.parties: ccm_core.parties:
- party_id: -10 - party_id: 10
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: admins name: admins
- party_id: -30 - party_id: 30
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: editors name: editors
ccm_core.groups: ccm_core.groups:
- party_id: -10 - party_id: 10
- party_id: -30 - party_id: 30

View File

@ -1,14 +1,14 @@
ccm_core.parties: ccm_core.parties:
- party_id: -10 - party_id: 10
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: admins name: admins
- party_id: -20 - party_id: 20
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: users name: users
- party_id: -30 - party_id: 30
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: authors name: authors
ccm_core.groups: ccm_core.groups:
- party_id: -10 - party_id: 10
- party_id: -20 - party_id: 20
- party_id: -30 - party_id: 30

View File

@ -1,18 +1,18 @@
ccm_core.parties: ccm_core.parties:
- party_id: -10 - party_id: 10
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: admins name: admins
- party_id: -20 - party_id: 20
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: users name: users
- party_id: -30 - party_id: 30
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: editors name: editors
- party_id: -40 - party_id: 40
uuid: 0fc446b7-a242-4407-9d04-b8ccaaa9dee5 uuid: 0fc446b7-a242-4407-9d04-b8ccaaa9dee5
name: authors name: authors
ccm_core.groups: ccm_core.groups:
- party_id: -10 - party_id: 10
- party_id: -20 - party_id: 20
- party_id: -30 - party_id: 30
- party_id: -40 - party_id: 40

View File

@ -1,14 +1,14 @@
ccm_core.parties: ccm_core.parties:
- party_id: -10 - party_id: 10
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: admins name: admins
- party_id: -20 - party_id: 20
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: users name: users
- party_id: -30 - party_id: 30
uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75 uuid: 7d5ad4a7-c2bd-4e49-8716-0bfb40413c75
name: editors name: editors
ccm_core.groups: ccm_core.groups:
- party_id: -10 - party_id: 10
- party_id: -20 - party_id: 20
- party_id: -30 - party_id: 30

View File

@ -1,8 +1,8 @@
ccm_core.parties: ccm_core.parties:
- party_id: -20 - party_id: 20
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: admins name: admins
ccm_core.groups: ccm_core.groups:
- party_id: -20 - party_id: 20
ccm_core.users: ccm_core.users:

View File

@ -1,13 +1,13 @@
ccm_core.parties: ccm_core.parties:
# John Doe # John Doe
- party_id: -10 - party_id: 10
uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268 uuid: 631be113-7e86-453d-9f8b-8cb6cb6df268
name: jdoe name: jdoe
- party_id: -20 - party_id: 20
uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4 uuid: 3a61d302-97a5-4e46-bbc9-8d716f7c54c4
name: managers name: managers
ccm_core.groups: ccm_core.groups:
- party_id: -20 - party_id: 20
ccm_core.users: ccm_core.users:
# John Doe # John Doe
- banned: false - banned: false
@ -15,7 +15,7 @@ ccm_core.users:
email_address: john.doe@example.com email_address: john.doe@example.com
family_name: Doe family_name: Doe
given_name: John given_name: John
party_id: -10 party_id: 10
# foo123 # foo123
password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA== password: $shiro1$SHA-512$500000$7xkDcZUN0/whJInHIvGsDw==$WhelBVmJU/cLV7lAkMOrE5B/mqCW0bUuid1WX+xBwzzAaekC5bYn9eeOFGJWhiDgmaC50ZCUmM96/iGsRoc4uA==
password_reset_required: false password_reset_required: false

Some files were not shown because too many files have changed in this diff Show More