mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 01:33:45 +08:00
0a5f548635
As part of this move, we are also renaming `discourse-chat` to `chat`.
16 lines
283 B
JavaScript
16 lines
283 B
JavaScript
import EmberObject from "@ember/object";
|
|
|
|
export default class MockPresenceChannel extends EmberObject {
|
|
users = [];
|
|
name = null;
|
|
subscribed = false;
|
|
|
|
async unsubscribe() {
|
|
this.set("subscribed", false);
|
|
}
|
|
|
|
async subscribe() {
|
|
this.set("subscribed", true);
|
|
}
|
|
}
|