Welcome to mirror list, hosted at ThFree Co, Russian Federation.

note.js.es6 « models « diff_notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2d2d389c38cc9489ee4ba0a069e4a73d312072e (plain)
1
2
3
4
5
6
7
8
9
class NoteModel {
  constructor (discussionId, noteId, canResolve, resolved, resolved_by) {
    this.discussionId = discussionId;
    this.id = noteId;
    this.canResolve = canResolve;
    this.resolved = resolved;
    this.resolved_by = resolved_by;
  }
}