-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This might be a little ambiguous since we'll have permalinks within the Matrix Public Archive with `?at=$xxx` (related #137) which is different from `matrix.to` permalinks 🤔 But will just go with it for now ⏩
- Loading branch information
1 parent
11cbf39
commit b41d15a
Showing
5 changed files
with
30 additions
and
30 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
'use strict'; | ||
|
||
const { RetainedObservableValue, PowerLevels } = require('hydrogen-view-sdk'); | ||
|
||
// Fake power levels for viewing the room anonymously | ||
const stubPowerLevels = new PowerLevels({ | ||
powerLevelEvent: {}, | ||
ownUserId: 'xxx-ownUserId', | ||
membership: null, | ||
}); | ||
const stubPowerLevelsObservable = new RetainedObservableValue(stubPowerLevels, () => { | ||
// freeCallback | ||
// | ||
// I don't think we need to do anything here 🤷 | ||
}); | ||
|
||
module.exports = stubPowerLevelsObservable; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters