mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
10 lines
202 B
Dart
10 lines
202 B
Dart
|
import 'package:comunic/helpers/account_helper.dart';
|
||
|
|
||
|
/// Account utilities
|
||
|
///
|
||
|
/// @author Pierre HUBERT
|
||
|
|
||
|
/// Get the ID of the current user
|
||
|
int userID() {
|
||
|
return AccountHelper.getCurrentUserID();
|
||
|
}
|