parent
786d6190f8
commit
df5493dd2a
|
@ -9,7 +9,7 @@ class TimelineEvent(models.Model):
|
||||||
|
|
||||||
class Types(models.TextChoices):
|
class Types(models.TextChoices):
|
||||||
post = "post"
|
post = "post"
|
||||||
boost = "boost" # A boost from someone (post substitude)
|
boost = "boost" # A boost from someone (post substitute)
|
||||||
mentioned = "mentioned"
|
mentioned = "mentioned"
|
||||||
liked = "liked" # Someone liking one of our posts
|
liked = "liked" # Someone liking one of our posts
|
||||||
followed = "followed"
|
followed = "followed"
|
||||||
|
|
|
@ -14,7 +14,7 @@ Currently, it supports:
|
||||||
* Creating and receiving likes
|
* Creating and receiving likes
|
||||||
* Delivering mentions to those mentioned, and notifications for incoming mentions
|
* Delivering mentions to those mentioned, and notifications for incoming mentions
|
||||||
* Following and unfollowing
|
* Following and unfollowing
|
||||||
* Reciving follows and unfollows
|
* Receiving follows and unfollows
|
||||||
* A home timeline, a local timeline, and a federated timeline
|
* A home timeline, a local timeline, and a federated timeline
|
||||||
* Profile pages with bios, icons, and header images
|
* Profile pages with bios, icons, and header images
|
||||||
* Searching for users by exact handle
|
* Searching for users by exact handle
|
||||||
|
|
|
@ -74,7 +74,7 @@ be provided from the first boot.
|
||||||
fully-qualified URL prefix that serves that directory.
|
fully-qualified URL prefix that serves that directory.
|
||||||
|
|
||||||
* If it is set to ``gcs``, you must also provide ``TAKAHE_MEDIA_BUCKET``,
|
* If it is set to ``gcs``, you must also provide ``TAKAHE_MEDIA_BUCKET``,
|
||||||
the name of the bucket to store files in. The bucket must be publically
|
the name of the bucket to store files in. The bucket must be publicly
|
||||||
readable and have "uniform access control" enabled.
|
readable and have "uniform access control" enabled.
|
||||||
|
|
||||||
* If it is set to ``s3``, you must also provide ``TAKAHE_MEDIA_BUCKET``,
|
* If it is set to ``s3``, you must also provide ``TAKAHE_MEDIA_BUCKET``,
|
||||||
|
|
|
@ -14,7 +14,7 @@ class StateGraph:
|
||||||
automatic_states: ClassVar[Set["State"]]
|
automatic_states: ClassVar[Set["State"]]
|
||||||
|
|
||||||
def __init_subclass__(cls) -> None:
|
def __init_subclass__(cls) -> None:
|
||||||
# Collect state memebers
|
# Collect state members
|
||||||
cls.states = {}
|
cls.states = {}
|
||||||
for name, value in cls.__dict__.items():
|
for name, value in cls.__dict__.items():
|
||||||
if name in ["__module__", "__doc__", "states"]:
|
if name in ["__module__", "__doc__", "states"]:
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
order to delete it.
|
order to delete it.
|
||||||
</p>
|
</p>
|
||||||
{% else %}
|
{% else %}
|
||||||
<p>Please confirm deletion of this domain - there are no identities registed on it.</p>
|
<p>Please confirm deletion of this domain - there are no identities registered on it.</p>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
<a class="button" href="{{ domain.urls.edit }}">Cancel</a>
|
<a class="button" href="{{ domain.urls.edit }}">Cancel</a>
|
||||||
<button class="delete">Confirm Deletion</button>
|
<button class="delete">Confirm Deletion</button>
|
||||||
|
|
Loading…
Reference in New Issue