Skip to content

Commit

Permalink
rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
starswan committed Oct 10, 2024
1 parent 42ae0e8 commit 72451c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ gem "rails_semantic_logger"
gem "recaptcha"
gem "redis"
gem "rgeo-geojson"
gem "rubyzip"
gem "sanitize"
gem "sentry-rails"
gem "sentry-ruby"
Expand All @@ -76,7 +77,6 @@ gem "sidekiq", "<7"
gem "sidekiq-cron"
gem "skylight"
gem "slim-rails"
gem "rubyzip"
gem "validate_url"
gem "valid_email2"
gem "wicked"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def update_status
redirect_to organisation_job_job_applications_path(vacancy.id), success: t(".#{status}", name: job_application.name)
end

require 'zip'
require "zip"

def download_selected
downloads = vacancy.job_applications.find params[:applications]
Expand All @@ -60,7 +60,7 @@ def download_selected
filename: "applications_#{vacancy.id}.zip",
type: "application/zip",
disposition: "attachment",
)
)
end

private
Expand Down

0 comments on commit 72451c7

Please sign in to comment.