1/2 threads resolved
approved this merge request
added 1 commit
- 9e90af8f - (feat) add endpoint request for disabling comments
unmarked as a Work In Progress
changed the description
marked as a Work In Progress
added 2 commits
unmarked as a Work In Progress
changed the description
- MaintainerResolved by Juan Manuel Solaro
Got some merge conflicts that need cleaned up @juanmsolaro
- Last reply by Juan Manuel Solaro
added 70 commits
- bd1236c8...dd7922c1 - 69 commits from branch
minds:master
- 9c52372f - Merge branch 'master' into 'sprint/InterestingIguana.feat.enable.disable.comments'
- bd1236c8...dd7922c1 - 69 commits from branch
resolved all threads
marked as a Work In Progress
changed the description
added 1 commit
- ef113722 - (fix) add spacing to be on a par with standard
unmarked as a Work In Progress
changed target branch from
master
tov3.8.0-rc2
1 import { observable, decorate } from 'mobx'; 1 import { observable, decorate, action } from 'mobx'; 2 2 import BaseModel from '../common/BaseModel'; 3 import groupsService from './GroupsService'; 3 4 4 5 /** 5 6 * Group model 6 7 */ 7 8 export default class GroupModel extends BaseModel { 9 @observable conversationDisabled = false; - Maintainer
Maybe we can put this observable in the decorate at the end of the file: adding
'conversationDisabled': observable