mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
556 B
16 lines
556 B
import ApiService from '@/services/api.service'
|
|
import { RoleRepository, RoleItemResponse } from '../../domain/models/role/roleRepository'
|
|
import { RoleItem } from '~/domain/models/role/role'
|
|
|
|
export class APIRoleRepository implements RoleRepository {
|
|
constructor(
|
|
private readonly request = ApiService
|
|
) {}
|
|
|
|
async list(): Promise<RoleItem[]> {
|
|
const url = `/roles`
|
|
const response = await this.request.get(url)
|
|
const responseItems: RoleItemResponse[] = response.data
|
|
return responseItems.map(item => RoleItem.valueOf(item))
|
|
}
|
|
}
|