mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-19 08:15:16 +00:00
Get latest posts from server
This commit is contained in:
14
lib/enums/post_kind.dart
Normal file
14
lib/enums/post_kind.dart
Normal file
@ -0,0 +1,14 @@
|
||||
/// Different kinds of posts
|
||||
///
|
||||
/// @author Pierre HUBERT
|
||||
|
||||
enum PostKind {
|
||||
TEXT,
|
||||
IMAGE,
|
||||
WEB_LINK,
|
||||
PDF,
|
||||
MOVIE,
|
||||
COUNTDOWN,
|
||||
SURVEY,
|
||||
YOUTUBE
|
||||
}
|
5
lib/enums/post_visibility_level.dart
Normal file
5
lib/enums/post_visibility_level.dart
Normal file
@ -0,0 +1,5 @@
|
||||
/// Post visibility level
|
||||
///
|
||||
/// @author Pierre HUBERT
|
||||
|
||||
enum PostVisibilityLevel { PUBLIC, FRIENDS, USER, GROUP_MEMBERS }
|
5
lib/enums/user_access_levels.dart
Normal file
5
lib/enums/user_access_levels.dart
Normal file
@ -0,0 +1,5 @@
|
||||
/// User access levels
|
||||
///
|
||||
/// @author Pierre HUBERT
|
||||
|
||||
enum UserAccessLevels { NONE, BASIC, INTERMEDIATE, FULL}
|
Reference in New Issue
Block a user