change readonly boolean to role enum

This commit is contained in:
mgabor
2024-04-17 09:31:56 +02:00
parent 9126bf2520
commit 87bc244b68
30 changed files with 297 additions and 141 deletions

View File

@@ -91,7 +91,7 @@ void main() {
// TODO
});
// Deprecated in favor of users
// Deprecated in favor of sharedUsersV2
// List<UserResponseDto> sharedUsers (default value: const [])
test('to test the property `sharedUsers`', () async {
// TODO

View File

@@ -16,8 +16,8 @@ void main() {
// final instance = AlbumUserResponseDto();
group('test AlbumUserResponseDto', () {
// bool readonly
test('to test the property `readonly`', () async {
// AlbumUserRole role
test('to test the property `role`', () async {
// TODO
});

View File

@@ -0,0 +1,21 @@
//
// AUTO-GENERATED FILE, DO NOT MODIFY!
//
// @dart=2.12
// ignore_for_file: unused_element, unused_import
// ignore_for_file: always_put_required_named_parameters_first
// ignore_for_file: constant_identifier_names
// ignore_for_file: lines_longer_than_80_chars
import 'package:openapi/api.dart';
import 'package:test/test.dart';
// tests for AlbumUserRole
void main() {
group('test AlbumUserRole', () {
});
}

View File

@@ -16,8 +16,8 @@ void main() {
// final instance = UpdateAlbumUserDto();
group('test UpdateAlbumUserDto', () {
// bool readonly
test('to test the property `readonly`', () async {
// AlbumUserRole role
test('to test the property `role`', () async {
// TODO
});