mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-17 09:36:28 +01:00
20 lines
335 B
JavaScript
20 lines
335 B
JavaScript
const riot = require('riot');
|
|
|
|
module.exports = me => {
|
|
riot.mixin('i', {
|
|
init: () => {
|
|
this.I = me;
|
|
this.SIGNIN = me != null;
|
|
|
|
if (this.SIGNIN) {
|
|
this.on('mount', () => {
|
|
me.on('updated', this.update);
|
|
});
|
|
this.on('unmount', () => {
|
|
me.off('updated', this.update);
|
|
});
|
|
}
|
|
},
|
|
me: me
|
|
});
|
|
};
|