projects
/
akkoma
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge remote-tracking branch 'pleroma/develop' into cycles-views
[akkoma]
/
test
/
fixtures
/
modules
/
good_mrf.ex
1
defmodule Fixtures.Modules.GoodMRF do
2
@behaviour Pleroma.Web.ActivityPub.MRF
3
4
@impl true
5
def filter(a), do: {:ok, a}
6
7
@impl true
8
def describe, do: %{}
9
10
@impl true
11
def config_description do
12
%{
13
key: :good_mrf,
14
related_policy: "Fixtures.Modules.GoodMRF",
15
label: "Good MRF",
16
description: "Some description"
17
}
18
end
19
end