User
Located in ./people.ppl
, this is the member
associated
with the user
. It is associated by sharing the same id
.
This exists so that the core
can be shared and the user
can still relate themselves to that core
.
If a user
is not defined, the workspace will not load.
Fields
intention
- (Optional) Anintention
block representing how the user wants to connect with themselves -Intention
Examples
Minimal
member alex_rivera {
first_name: "Alex"
last_name: "Rivera"
}
// same id as alex_rivera member, which means that Alex is
// the first person of this workspace (aka the user).
// no fields defined so no braces required
user alex_rivera
Full
member tara_johnson {
first_name: "Tara"
last_name: "Johnson"
}
// tara wants to reflect on this organization alone once a week
user tara_johnson {
intention: {
event_name: "Weekly Reflection"
recurrence: "FREQ=WEEKLY;INTERVAL=1;BYDAY=TU"
}
}