diff options
| author | lain <lain@soykaf.club> | 2020-06-08 09:11:55 +0000 | 
|---|---|---|
| committer | lain <lain@soykaf.club> | 2020-06-08 09:11:55 +0000 | 
| commit | a1aa9fa91320d527e93435fe236534003cd85d31 (patch) | |
| tree | af6431405350fef893d0f903b47717a9866aa5a7 /benchmarks/mix | |
| parent | d74985af2381b1c0dae2bc9c79c14582e5c61b97 (diff) | |
| parent | 167812a3f2c1470012cb161f3c5ba4c021fbad97 (diff) | |
| download | pleroma-a1aa9fa91320d527e93435fe236534003cd85d31.tar.gz pleroma-a1aa9fa91320d527e93435fe236534003cd85d31.zip | |
Merge branch 'activity-pub-use-atoms-as-keys' into 'develop'
Use atoms as keys in `ActivityPub.fetch_*` options
See merge request pleroma/pleroma!2629
Diffstat (limited to 'benchmarks/mix')
| -rw-r--r-- | benchmarks/mix/tasks/pleroma/benchmarks/tags.ex | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/benchmarks/mix/tasks/pleroma/benchmarks/tags.ex b/benchmarks/mix/tasks/pleroma/benchmarks/tags.ex index 1162b2e06..c051335a5 100644 --- a/benchmarks/mix/tasks/pleroma/benchmarks/tags.ex +++ b/benchmarks/mix/tasks/pleroma/benchmarks/tags.ex @@ -100,14 +100,14 @@ defmodule Mix.Tasks.Pleroma.Benchmarks.Tags do      _activities =        params -      |> Map.put("type", "Create") -      |> Map.put("local_only", local_only) -      |> Map.put("blocking_user", user) -      |> Map.put("muting_user", user) -      |> Map.put("user", user) -      |> Map.put("tag", tags) -      |> Map.put("tag_all", tag_all) -      |> Map.put("tag_reject", tag_reject) +      |> Map.put(:type, "Create") +      |> Map.put(:local_only, local_only) +      |> Map.put(:blocking_user, user) +      |> Map.put(:muting_user, user) +      |> Map.put(:user, user) +      |> Map.put(:tag, tags) +      |> Map.put(:tag_all, tag_all) +      |> Map.put(:tag_reject, tag_reject)        |> Pleroma.Web.ActivityPub.ActivityPub.fetch_public_activities()    end  end | 
