You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: APIs.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ NOTE: you will want to pass _either_ a slug _or_ an id to query by. If you pass
82
82
}
83
83
```
84
84
85
-
Example GraphQL mutation: __Updating a Group__ (only will succeed on groups that the user is a moderator of)
85
+
Example GraphQL mutation: __Updating a Group__ (only will succeed on groups that the user is an administrator of)
86
86
```
87
87
{
88
88
"query": "mutation ($id: ID, $changes: GroupInput) { updateGroup(id: $id, changes: $changes) { id name slug } }",
@@ -204,8 +204,8 @@ Example GraphQL mutation:
204
204
}
205
205
}
206
206
],
207
-
"moderatorDescriptor": "Steward", // Default is Moderator
208
-
"moderatorDescriptorPlural": "Stewards", // Default is Moderators
207
+
"stewardDescriptor": "Steward", // Default is Steward
208
+
"stewardDescriptorPlural": "Stewards", // Default is Stewards
209
209
"settings": {
210
210
locationDisplayPrecision: precise, // precise => precise location displayed, near => location text shows nearby town/city and coordinate shifted, region => location not shown on map at all and location text shows nearby city/region
Copy file name to clipboardexpand all lines: CHANGELOG.md
+5
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## Unreleased
8
8
9
+
## [5.9.0] - 2024-07-23
10
+
11
+
### Added
12
+
-__More powerful Roles & Responsibilities__: Groups can now have roles that have specific responsibilities, and members can have multiple roles in a group. Roles can be assigned to members by group Coordinators (described below). There are 4 built in System responsibilities: Administration (super admin that can do everything and change all group settings), Manage Content (can remove posts from the group, and edit the Explore page), Remove Members (boot members from the group), and Add Members (full access to the invite and join request functionality for the group). There are also 3 built in Common Roles that all groups have: Coordinators have full Administration powers, Moderators can Manage Content and Remove Members, and Hosts can Add Members. Groups can also add custom roles with custom responsibilities defined by the group, or custom roles that include the system responsibilities.
0 commit comments