mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-26 00:44:42 +01:00
9 lines
317 B
Dart
9 lines
317 B
Dart
|
import 'package:nc_photos/account.dart';
|
||
|
import 'package:nc_photos/api/api_util.dart' as api_util;
|
||
|
|
||
|
String getRemoteAlbumsDir(Account account) =>
|
||
|
"${_getRemoteStorageDir(account)}/albums";
|
||
|
|
||
|
String _getRemoteStorageDir(Account account) =>
|
||
|
"${api_util.getWebdavRootUrlRelative(account)}/.com.nkming.nc_photos";
|