Run rubocop on all files

This commit is contained in:
2023-06-08 21:57:54 +10:00
parent 6a2bc82e3b
commit 9d9d8ccf6d
65 changed files with 114 additions and 158 deletions

View File

@@ -4,7 +4,6 @@ module Admin
module Views
module Bookmarks
class Index < Admin::View
include Deps["repos.bookmark_repo"]
expose :published_bookmarks do |bookmarks|
@@ -16,7 +15,7 @@ module Admin
end
expose :bookmarks do
bookmark_repo.list.partition{|p| p.published_at }
bookmark_repo.list.partition { |p| p.published_at }
end
expose :running_jobs do
@@ -26,4 +25,4 @@ module Admin
end
end
end
end
end