-
-
Notifications
You must be signed in to change notification settings - Fork 19
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
Add RequiresClient capability #47
Conversation
Unsure if we have it recorded as a style rule, but generally we tend to name PRs in the style "[Title case, active verb] blah blah[no full stop]", so perhaps "Add NoPopout capability" here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise, lgtm! Thanks!
662c500
to
291bb58
Compare
src/interfaces/Capabilities.ts
Outdated
@@ -20,7 +20,8 @@ export enum MatrixCapabilities { | |||
Screenshots = "m.capability.screenshot", | |||
StickerSending = "m.sticker", | |||
AlwaysOnScreen = "m.always_on_screen", | |||
|
|||
// Ask Element to not give the option to move the widget into a seperate tab. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// Ask Element to not give the option to move the widget into a seperate tab. | |
// Ask Element to not give the option to move the widget into a separate tab. |
Once the typo is fixed, I think this side is ready to go, so request another review once that's done. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This part looks good to me, thanks for working on it! 😄
I'll merge this side now, as that may help with type failures in CI on the React SDK side.
@turt2live Will we need a release of this layer and update to the new version before the React SDK side is happy? |
Almost certainly, yea. Both react-sdk and element-web will need package updates. |
This PR only adds
RequiresClient
to the Capability enum.Required for: matrix-org/matrix-react-sdk#7005