Skip to content

Owner

Overview

The Owner is an important role within the CAG database, serving as the ultimate overseer and manager of the entire organisation. Typically, the owner is the person who initially created the organisation within the platform, but ownership can be transferred to another user if necessary.

The Owner holds authority over all aspects of the organisation, including all projects, groups, sub-groups, and activities. This role ensures that the organisation operates smoothly and that all elements within it are effectively managed and aligned with the overall goals.

In terms of the CAG hierarchy, the owner sits at the top, providing a bird's-eye view of the entire organisational structure. They are responsible for the overall management of the platform.

This structure enhances the ability to make high-level decisions, allocate resources efficiently, and oversee the progress and performance of various projects and groups within the organisation.

The owner's role is crucial in maintaining the integrity and functionality of the platform.

In the diagram below, the owner is highlighted to illustrate their overarching role and significance within the larger CAG database ecosystem.

stateDiagram-v2

    classDef focus font-size:1.2em,font-weight:bold,stroke-width:3px;

    project1: Project
    project2: Project
    group1: Group
    group2: Group
    group3: Sub-Group
    group4: Group
    group5: Sub-Group
    activity1: Activity
    activity2: Activity
    activity3: Activity
    activity4: Activity
    activity5: Activity
    activity6: Activity
    activity7: Activity

    [*] --> Owner
    Owner --> project1
    Owner --> project2
    project1 --> group1
    project1 --> group2
    group2 --> group3
    project2 --> group4
    group4 --> group5
    group1 --> activity1
    group1 --> activity2
    group1 --> activity3
    group3 --> activity4
    group4 --> activity5
    group5 --> activity6
    group5 --> activity7

    class Owner, Owner focus