25269f66ba
Some classes in vue_shared were used only by boards, so they were moved to the boards directory.
13 lines
361 B
JavaScript
13 lines
361 B
JavaScript
export default class ListAssignee {
|
|
constructor(obj, defaultAvatar) {
|
|
this.id = obj.id;
|
|
this.name = obj.name;
|
|
this.username = obj.username;
|
|
this.avatar = obj.avatar_url || obj.avatar || defaultAvatar;
|
|
this.path = obj.path;
|
|
this.state = obj.state;
|
|
this.webUrl = obj.web_url || obj.webUrl;
|
|
}
|
|
}
|
|
|
|
window.ListAssignee = ListAssignee;
|