-
-
Notifications
You must be signed in to change notification settings - Fork 676
Functional members #1771
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Functional members #1771
Changes from 12 commits
8c0f5b4
d60affc
a248bbc
4700dc0
d219c2f
0074b71
c426369
96420a7
ab679c2
96e6e7b
116085e
d7e6cee
7129c7c
4a1cd15
4cf6557
324cd88
718a22f
b8c2a57
cb2b961
afa6768
b4bffd2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -144,6 +144,15 @@ export const UNSTABLE_MSC3089_LEAF = new UnstableValue("m.leaf", "org.matrix.msc | |
| */ | ||
| export const UNSTABLE_MSC3089_BRANCH = new UnstableValue("m.branch", "org.matrix.msc3089.branch"); | ||
|
|
||
| /** | ||
| * Functional members type for declaring a purpose of room members (e.g. helpful bots). | ||
| * Note that this reference is UNSTABLE and subject to breaking changes, including its | ||
| * eventual removal. | ||
| */ | ||
| export const UNSTABLE_ELEMENT_FUNCTIONAL_USERS = new UnstableValue( | ||
| "io.element.functional_members", | ||
| "io.element.functional_members"); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd sooner hop into
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd make it a type of its own, as UnstableValue has a different meaning, is exported and also requires Or do you mean to set |
||
|
|
||
| export interface IEncryptedFile { | ||
| url: string; | ||
| mimetype?: string; | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.