Merge branch 'master' into glitch-soc/merge-upstream
Conflicts: app/javascript/packs/public.js Changes made to app/javascript/packs/publics.js were applied to app/javascript/core/settings.js
This commit is contained in:
@@ -56,7 +56,7 @@ delegate(document, '.input-copy input', 'click', ({ target }) => {
|
||||
});
|
||||
|
||||
delegate(document, '.input-copy button', 'click', ({ target }) => {
|
||||
const input = target.parentNode.querySelector('input');
|
||||
const input = target.parentNode.querySelector('.input-copy__wrapper input');
|
||||
|
||||
input.focus();
|
||||
input.select();
|
||||
|
11
app/workers/scheduler/pghero_scheduler.rb
Normal file
11
app/workers/scheduler/pghero_scheduler.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class Scheduler::PgheroScheduler
|
||||
include Sidekiq::Worker
|
||||
|
||||
sidekiq_options unique: :until_executed, retry: 0
|
||||
|
||||
def perform
|
||||
PgHero.capture_space_stats
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user