feat: view shared links inside of mobile app
This commit is contained in:
@@ -111,4 +111,13 @@ class SharedLinkService {
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
Future<SharedLink?> getMySharedLink() async {
|
||||
final responseDto = await _apiService.sharedLinksApi.getMySharedLink();
|
||||
if (responseDto != null) {
|
||||
return SharedLink.fromDto(responseDto);
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user