Skip to content

Commit

Permalink
Update NASES datasets links
Browse files Browse the repository at this point in the history
  • Loading branch information
luciajanikova committed Jun 4, 2024
1 parent ff8ddec commit 447cd81
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class Upvs::FetchPublicAuthorityActiveEdesksListJob < ApplicationJob
queue_as :upvs

DATASET_URL = 'https://data.slovensko.sk/download?id=6881224e-6ec4-4e83-ae73-f1dfa3125d82'
DATASET_URL = 'https://data.slovensko.sk/download?id=794af827-132b-46d1-98e7-ccd73eda26e0'

def perform(downloader: HarvesterUtils::Downloader)
csv_file = downloader.download_file(DATASET_URL)
Expand Down
2 changes: 1 addition & 1 deletion app/jobs/upvs/fetch_public_authority_edesks_list_job.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class Upvs::FetchPublicAuthorityEdesksListJob < ApplicationJob
queue_as :upvs

DATASET_URL = 'https://data.slovensko.sk/download?id=7dc7f9be-0d6f-4bac-b3fd-5df587da8ac1'
DATASET_URL = 'https://data.slovensko.sk/download?id=7c70f6c9-1777-4d8a-8711-f1dfd2359620'

def perform(downloader: HarvesterUtils::Downloader)
csv_file = downloader.download_file(DATASET_URL)
Expand Down
2 changes: 1 addition & 1 deletion app/jobs/upvs/fetch_services_with_forms_list_job.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
class Upvs::FetchServicesWithFormsListJob < ApplicationJob
queue_as :upvs

DATASET_URL = 'https://data.slovensko.sk/download?id=49212a67-5002-409d-bfad-82a69c8fa153'
DATASET_URL = 'https://data.slovensko.sk/download?id=c78de203-caa5-4d1d-9496-975f0e2567d1'

def perform(downloader: HarvesterUtils::Downloader)
zip_file = downloader.download_file(DATASET_URL)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

RSpec.describe Upvs::FetchPublicAuthorityActiveEdesksListJob, type: :job do
describe '#perform' do
let(:url) { 'https://data.slovensko.sk/download?id=6881224e-6ec4-4e83-ae73-f1dfa3125d82' }
let(:url) { 'https://data.slovensko.sk/download?id=794af827-132b-46d1-98e7-ccd73eda26e0' }

let(:downloader) { double }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

RSpec.describe Upvs::FetchPublicAuthorityEdesksListJob, type: :job do
describe '#perform' do
let(:url) { 'https://data.slovensko.sk/download?id=7dc7f9be-0d6f-4bac-b3fd-5df587da8ac1' }
let(:url) { 'https://data.slovensko.sk/download?id=7c70f6c9-1777-4d8a-8711-f1dfd2359620' }

let(:downloader) { double }

Expand Down
2 changes: 1 addition & 1 deletion spec/jobs/upvs/fetch_services_with_forms_list_job_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

RSpec.describe Upvs::FetchServicesWithFormsListJob, type: :job do
describe '#perform' do
let(:url) { 'https://data.slovensko.sk/download?id=49212a67-5002-409d-bfad-82a69c8fa153' }
let(:url) { 'https://data.slovensko.sk/download?id=c78de203-caa5-4d1d-9496-975f0e2567d1' }

let(:downloader) { double }

Expand Down

0 comments on commit 447cd81

Please sign in to comment.