diff options
| author | winter | 2024-12-19 20:59:18 +0000 |
|---|---|---|
| committer | winter | 2024-12-19 20:59:18 +0000 |
| commit | 72b07245f44c73ed41bfcca2465a9ee34426a922 (patch) | |
| tree | 57372703100ad792c95c665a568aabe8a763bfdf /Digitigrade/Model/FollowRelationStatus.php | |
| parent | 1e070a7a0097c74f8ac30678d39267f19c76f9f6 (diff) | |
implement follow relationships (untested)
does NOT implement the actual behaviour behind follows (receiving posts and such)
Diffstat (limited to 'Digitigrade/Model/FollowRelationStatus.php')
| -rw-r--r-- | Digitigrade/Model/FollowRelationStatus.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Digitigrade/Model/FollowRelationStatus.php b/Digitigrade/Model/FollowRelationStatus.php new file mode 100644 index 0000000..24ba34b --- /dev/null +++ b/Digitigrade/Model/FollowRelationStatus.php @@ -0,0 +1,7 @@ +<?php +namespace Digitigrade\Model; + +enum FollowRelationStatus: string { + case PENDING = 'pending'; + case ACTIVE = 'active'; +}
\ No newline at end of file |
