This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/models/userList.ts

18 lines
439 B
TypeScript

import UserShareBaseModel from './userShareBase'
import type { IList } from './list'
export interface IUserList extends UserShareBaseModel {
listId: IList['id']
}
// This class extends the user share model with a 'rights' parameter which is used in sharing
export default class UserListModel extends UserShareBaseModel implements IUserList {
listId!: IList['id']
defaults() {
return {
...super.defaults(),
listId: 0,
}
}
}