forked from AkkomaGang/akkoma
timeline controller: add a TODO for replacing copypaste with a macro
This commit is contained in:
parent
e6ccf12129
commit
b5465bf385
1 changed files with 4 additions and 4 deletions
|
@ -14,10 +14,10 @@ defmodule Pleroma.Web.MastodonAPI.TimelineController do
|
||||||
alias Pleroma.User
|
alias Pleroma.User
|
||||||
alias Pleroma.Web.ActivityPub.ActivityPub
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
||||||
|
|
||||||
# XXX: Ideally these would be generated instead of copypasted,
|
# TODO: Replace with a macro when there is a Phoenix release with
|
||||||
# but I haven't been able to overcome an issue with guards when
|
# https://github.com/phoenixframework/phoenix/commit/2e8c63c01fec4dde5467dbbbf9705ff9e780735e
|
||||||
# trying to generate these.
|
# in it
|
||||||
# See: https://elixirforum.com/t/trouble-plugging-plugs-with-generated-options-in-guards-in-a-phoenix-controller/29465
|
|
||||||
plug(RateLimiter, [name: :timeline, bucket_name: :direct_timeline] when action == :direct)
|
plug(RateLimiter, [name: :timeline, bucket_name: :direct_timeline] when action == :direct)
|
||||||
plug(RateLimiter, [name: :timeline, bucket_name: :public_timeline] when action == :public)
|
plug(RateLimiter, [name: :timeline, bucket_name: :public_timeline] when action == :public)
|
||||||
plug(RateLimiter, [name: :timeline, bucket_name: :home_timeline] when action == :home)
|
plug(RateLimiter, [name: :timeline, bucket_name: :home_timeline] when action == :home)
|
||||||
|
|
Loading…
Reference in a new issue