mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 01:06:21 +01:00
6e9a34342a
Shares are now stored in the album json, such that users other than the album owner are aware of the shares
6 lines
110 B
Dart
6 lines
110 B
Dart
extension ObjectExtension<T> on T {
|
|
T apply(void Function(T obj) fn) {
|
|
fn(this);
|
|
return this;
|
|
}
|
|
}
|