mirror of https://github.com/mastodon/mastodon
Fixing FanOutOnWriteService, fixing Sidekiq not having enough DB connections
in the pool, adding a throttle of 60rpm per IP, adding mini profiler, adding admin status to userspull/69/head
parent
8eeec389c1
commit
e24bfbde1a
@ -1,3 +1,5 @@
|
|||||||
class Rack::Attack
|
class Rack::Attack
|
||||||
# TODO
|
throttle('req/ip', limit: 300, period: 5.minutes) do |req|
|
||||||
|
req.ip
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
class AddAdminToUsers < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
add_column :users, :admin, :boolean, default: false
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue