├── .dockerignore ├── .erb_lint.yml ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── actionlint.yml │ ├── ci.yml │ ├── copy-pr-template-to-dependabot-prs.yml │ ├── deploy.yml │ └── release.yml ├── .gitignore ├── .govuk_dependabot_merger.yml ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENCE ├── README.md ├── Rakefile ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── javascripts │ │ ├── application.js │ │ └── es6-components.js │ └── stylesheets │ │ ├── application.scss │ │ └── components │ │ ├── app-danger-block.scss │ │ └── app-side.scss ├── controllers │ ├── api_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ ├── link_filter_helper.rb │ │ ├── link_importer_utils.rb │ │ └── service_permissions.rb │ ├── links_controller.rb │ ├── local_authorities_controller.rb │ ├── services_controller.rb │ └── webhooks_controller.rb ├── helpers │ └── application_helper.rb ├── lib │ ├── google_analytics │ │ ├── analytics_export_service.rb │ │ ├── analytics_import_service.rb │ │ ├── clicks_request.rb │ │ ├── clicks_response.rb │ │ ├── client.rb │ │ └── google_analytics_export_credentials.rb │ └── local_links_manager │ │ ├── check_links │ │ ├── link_status_requester.rb │ │ └── link_status_updater.rb │ │ ├── distributed_lock.rb │ │ ├── export │ │ ├── analytics_exporter.rb │ │ ├── bad_links_url_and_status_exporter.rb │ │ ├── link_status_exporter.rb │ │ ├── links_exporter.rb │ │ ├── local_authority_links_exporter.rb │ │ └── service_links_exporter.rb │ │ ├── import │ │ ├── analytics_importer.rb │ │ ├── csv_downloader.rb │ │ ├── enabled_service_checker.rb │ │ ├── error_message_formatter.rb │ │ ├── errors.rb │ │ ├── import_comparer.rb │ │ ├── interactions_importer.rb │ │ ├── links.rb │ │ ├── local_authorities_importer.rb │ │ ├── missing_links.rb │ │ ├── processor.rb │ │ ├── publishing_api_importer.rb │ │ ├── response.rb │ │ ├── service_interactions_importer.rb │ │ ├── services_importer.rb │ │ ├── services_tier_importer.rb │ │ └── summariser.rb │ │ └── link_resolver.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── interaction.rb │ ├── link.rb │ ├── local_authority.rb │ ├── service.rb │ ├── service_interaction.rb │ ├── service_tier.rb │ ├── tier.rb │ └── user.rb ├── presenters │ ├── interaction_presenter.rb │ ├── link_api_response_presenter.rb │ ├── link_presenter.rb │ ├── links_table_presenter.rb │ ├── local_authorities_table_presenter.rb │ ├── local_authority_api_response_presenter.rb │ ├── local_authority_external_content_presenter.rb │ ├── local_authority_hash_presenter.rb │ ├── local_authority_presenter.rb │ ├── service_link_presenter.rb │ ├── service_presenter.rb │ ├── services_table_presenter.rb │ └── url_status_presentation.rb ├── services │ └── local_authority_external_content_publisher.rb ├── validators │ └── non_blank_url_validator.rb └── views │ ├── layouts │ └── application.html.erb │ ├── links │ ├── _link_status_alerts.html.erb │ ├── _link_table_row.html.erb │ ├── edit.html.erb │ └── index.html.erb │ ├── local_authorities │ ├── _filter.html.erb │ ├── download_links_form.html.erb │ ├── edit_url.html.erb │ ├── index.html.erb │ ├── show.html.erb │ └── upload_links_form.html.erb │ ├── services │ ├── _local_authority.html.erb │ ├── _service_links_by_authority.html.erb │ ├── download_links_form.html.erb │ ├── index.html.erb │ ├── show.html.erb │ ├── update_owner_form.html.erb │ └── upload_links_form.html.erb │ └── shared │ ├── _download_links_form.html.erb │ ├── _flash.html.erb │ ├── _links_table.html.erb │ └── _upload_links_form.html.erb ├── bin ├── brakeman ├── dev ├── rails ├── rake ├── rubocop ├── setup └── thrust ├── config.ru ├── config ├── application.rb ├── boot.rb ├── breadcrumbs.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── govuk_publishing_components.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── permissions_policy.rb │ ├── prometheus.rb │ ├── secrets_to_credentials.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── schedule.rb ├── secrets.yml ├── spring.rb └── unicorn.rb ├── data └── local-authorities.csv ├── db ├── migrate │ ├── 20160413110438_create_users.rb │ ├── 20160415102439_create_local_authorities.rb │ ├── 20160427100154_create_interactions.rb │ ├── 20160427110426_create_services.rb │ ├── 20160428164235_add_indexes_to_interaction.rb │ ├── 20160503101228_add_indexes_to_services.rb │ ├── 20160504113456_create_service_interactions.rb │ ├── 20160504133456_add_indexes_to_service_interactions.rb │ ├── 20160511144329_add_tier_to_services.rb │ ├── 20160513113110_add_slug_to_services.rb │ ├── 20160517134617_create_links.rb │ ├── 20160523155343_add_enabled_column_to_service.rb │ ├── 20160525152805_add_slug_to_interactions.rb │ ├── 20160615155529_add_index_to_local_authorities.rb │ ├── 20160620155419_add_status_and_link_last_checked_to_links.rb │ ├── 20160621090108_add_status_and_link_last_checked_to_local_authority.rb │ ├── 20160729113356_add_parent_local_authority_id_to_local_authorities.rb │ ├── 20161014123008_strip_urls.rb │ ├── 20161104150651_add_broken_link_count_to_local_authority.rb │ ├── 20161110122049_add_broken_link_count_to_service.rb │ ├── 20161114122001_create_tier_and_service_tier.rb │ ├── 20161116153011_delete_old_tier_columns.rb │ ├── 20161212140755_add_created_at_to_service_tiers.rb │ ├── 20170223163013_add_url_index_to_links.rb │ ├── 20170405153230_add_linkerrors_and_linkwarnings_to_links.rb │ ├── 20170406133715_add_link_errors_and_link_warnings_to_local_authority.rb │ ├── 20170410075304_add_govuk_slug_and_title_to_service_interactions.rb │ ├── 20170411084006_add_default_to_link_errors_and_link_warnings.rb │ ├── 20170412223705_add_analytics_index_to_links.rb │ ├── 20170703154357_change_link_errors_and_warnings_to_arrays.rb │ ├── 20170703155105_add_problem_summary_and_suggested_fix_to_links.rb │ ├── 20170713083505_add_index_on_local_authority_homepage_url.rb │ ├── 20170926084949_allow_nil_urls.rb │ ├── 20170928143923_add_status_index_to_links.rb │ ├── 20190603131841_enable_service1788.rb │ ├── 20190617101145_change_tiers1788.rb │ ├── 20200406152345_add_index_to_service_tier.rb │ ├── 20200415103445_enable_service1113.rb │ ├── 20200501124957_enable_service_1287.rb │ ├── 20200604142453_add_default_to_analytics.rb │ ├── 20200605133220_add_constraint_to_analytics.rb │ ├── 20201105085759_enable_service1826.rb │ ├── 20201218121339_add_country_name_to_local_authority.rb │ ├── 20211103173354_add_local_custodian_code_to_local_authority.rb │ ├── 20220221141118_update_leicestershire_street_parties_permission.rb │ ├── 20230206155322_add_active_end_date_and_active_note_to_local_authority.rb │ ├── 20230307103144_add_succeeded_by_local_authority_id_to_local_authority.rb │ ├── 20230504115751_allow_null_snac.rb │ ├── 20240318105241_add_content_id_to_local_authorities.rb │ ├── 20240730142812_modify_services_add_organisation_slug.rb │ └── 20250424092221_add_title_to_links.rb ├── schema.rb └── seeds.rb ├── docs ├── adr │ └── adr-001-department-permissions.md ├── checking-links.md ├── deleting-a-link.md ├── enable-or-create-service.md ├── example-api-output.md ├── exporting-local-authority-links.md ├── google_analytics_custom_import.md ├── importing-local-authorities-data.md ├── importing-service-links-from-csv.md ├── local-authority-changes.md ├── permissions.md ├── remove-a-service.md └── service-owners.md ├── lgsl_lgil_fallback_links.csv ├── lib ├── assets │ └── .keep └── tasks │ ├── .keep │ ├── check-links │ └── link_checker.rake │ ├── export │ ├── analytics_bad_links_exporter.rake │ ├── blank_csv_exporter.rake │ ├── link_exporter.rake │ └── links_status_csv_exporter.rake │ ├── import │ ├── all.rake │ ├── google_analytics.rake │ ├── local_authorities.rake │ ├── missing_links.rake │ ├── service_interactions.rake │ └── service_links_from_csv.rake │ ├── lint.rake │ ├── remove_lock.rake │ └── service.rake ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── data │ └── .keep ├── favicon.ico └── robots.txt ├── spec ├── data │ └── local_authorities_csv_spec.rb ├── factories │ ├── clicks_response_factory.rb │ ├── interactions.rb │ ├── links.rb │ ├── local_authorities.rb │ ├── service_interactions.rb │ ├── services.rb │ └── users.rb ├── features │ ├── links │ │ ├── index_spec.rb │ │ └── links_spec.rb │ ├── local_authorities │ │ ├── local_authority_download_links_spec.rb │ │ ├── local_authority_index_spec.rb │ │ ├── local_authority_show_spec.rb │ │ └── local_authority_upload_links_spec.rb │ └── services │ │ ├── service_index_spec.rb │ │ └── service_show_spec.rb ├── fixtures │ └── service-links.csv ├── helpers │ └── application_helper_spec.rb ├── lib │ ├── google_analytics │ │ ├── analytics_export_service_spec.rb │ │ ├── analytics_import_service_spec.rb │ │ ├── clicks_request_spec.rb │ │ ├── clicks_response_spec.rb │ │ └── client_spec.rb │ ├── local-links-manager │ │ ├── check_links │ │ │ └── link_status_requester_spec.rb │ │ ├── distributed_lock_spec.rb │ │ ├── export │ │ │ ├── analytics_exporter_spec.rb │ │ │ ├── bad_links_url_and_status_exporter_spec.rb │ │ │ ├── fixtures │ │ │ │ ├── bad_links_url_status.csv │ │ │ │ ├── exported_links.csv │ │ │ │ └── ni_link.csv │ │ │ ├── links_status_exporter_spec.rb │ │ │ ├── local_authority_links_exporter_spec.rb │ │ │ └── service_links_exporter_spec.rb │ │ ├── import │ │ │ ├── analytics_importer_spec.rb │ │ │ ├── csv_downloader_spec.rb │ │ │ ├── enabled_service_checker_spec.rb │ │ │ ├── fixtures │ │ │ │ ├── imported_links.csv │ │ │ │ ├── imported_links_all_errors.csv │ │ │ │ ├── imported_links_few_errors.csv │ │ │ │ ├── imported_links_many_errors.csv │ │ │ │ ├── imported_links_nothing_to_import.csv │ │ │ │ ├── local-authorities.csv │ │ │ │ ├── local_contacts_sample.csv │ │ │ │ ├── sample.csv │ │ │ │ └── sample_malformed.csv │ │ │ ├── import_comparer_spec.rb │ │ │ ├── interactions_importer_spec.rb │ │ │ ├── links_spec.rb │ │ │ ├── local_authorities_importer_spec.rb │ │ │ ├── missing_links_spec.rb │ │ │ ├── publishing_api_importer_spec.rb │ │ │ ├── response_spec.rb │ │ │ ├── service_interactions_importer_spec.rb │ │ │ ├── services_importer_spec.rb │ │ │ └── services_tier_importer_spec.rb │ │ └── link_resolver_spec.rb │ └── tasks │ │ ├── export │ │ ├── blank_csv_exporter_spec.rb │ │ ├── link_exporter_spec.rb │ │ └── links_status_csv_exporter_spec.rb │ │ ├── import │ │ ├── all_spec.rb │ │ ├── missing_links_spec.rb │ │ ├── service_interactions_spec.rb │ │ └── service_links_from_csv_spec.rb │ │ ├── remove_lock_spec.rb │ │ └── service_spec.rb ├── models │ ├── interaction_spec.rb │ ├── link_spec.rb │ ├── local_authority_spec.rb │ ├── service_interaction_spec.rb │ ├── service_spec.rb │ └── user_spec.rb ├── presenters │ ├── interaction_presenter_spec.rb │ ├── link_api_response_presenter_spec.rb │ ├── link_presenter_spec.rb │ ├── local_authority_api_response_presenter_spec.rb │ ├── local_authority_external_content_presenter_spec.rb │ ├── local_authority_hash_presenter_spec.rb │ ├── local_authority_presenter_spec.rb │ ├── service_link_presenter_spec.rb │ └── url_status_presentation_spec.rb ├── rails_helper.rb ├── requests │ ├── api │ │ ├── link_spec.rb │ │ └── local_authority_spec.rb │ ├── bad_homepage_csv_spec.rb │ ├── broken_links_page_spec.rb │ ├── council_page_spec.rb │ ├── edit_link_page_spec.rb │ ├── link_checker_api_spec.rb │ ├── link_status_csv_spec.rb │ └── services_page_spec.rb ├── services │ └── local_authority_external_content_publisher_spec.rb ├── spec_helper.rb ├── support │ ├── appear_before_matcher.rb │ ├── authentication.rb │ ├── factory_bot.rb │ ├── gds_api_adapters.rb │ ├── shoulda.rb │ ├── stub_csv_rows.rb │ ├── timecop.rb │ ├── url_status_presentation.rb │ └── webmock.rb ├── system │ ├── edit_link_page_spec.rb │ ├── main_menu_spec.rb │ ├── service_page_spec.rb │ ├── services_page_spec.rb │ └── upload_links_csv_spec.rb └── validators │ └── non_blank_url_validator_spec.rb ├── vendor └── assets │ └── stylesheets │ └── .keep └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/.dockerignore -------------------------------------------------------------------------------- /.erb_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/.erb_lint.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/copy-pr-template-to-dependabot-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/.github/workflows/copy-pr-template-to-dependabot-prs.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.govuk_dependabot_merger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/.govuk_dependabot_merger.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require rails_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.1 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/es6-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/assets/javascripts/es6-components.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/app-danger-block.scss: -------------------------------------------------------------------------------- 1 | .app-danger-block { 2 | @include govuk-responsive-margin(6, "top"); 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/components/app-side.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/assets/stylesheets/components/app-side.scss -------------------------------------------------------------------------------- /app/controllers/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/controllers/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/link_filter_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/controllers/concerns/link_filter_helper.rb -------------------------------------------------------------------------------- /app/controllers/concerns/link_importer_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/controllers/concerns/link_importer_utils.rb -------------------------------------------------------------------------------- /app/controllers/concerns/service_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/controllers/concerns/service_permissions.rb -------------------------------------------------------------------------------- /app/controllers/links_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/controllers/links_controller.rb -------------------------------------------------------------------------------- /app/controllers/local_authorities_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/controllers/local_authorities_controller.rb -------------------------------------------------------------------------------- /app/controllers/services_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/controllers/services_controller.rb -------------------------------------------------------------------------------- /app/controllers/webhooks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/controllers/webhooks_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/lib/google_analytics/analytics_export_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/google_analytics/analytics_export_service.rb -------------------------------------------------------------------------------- /app/lib/google_analytics/analytics_import_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/google_analytics/analytics_import_service.rb -------------------------------------------------------------------------------- /app/lib/google_analytics/clicks_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/google_analytics/clicks_request.rb -------------------------------------------------------------------------------- /app/lib/google_analytics/clicks_response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/google_analytics/clicks_response.rb -------------------------------------------------------------------------------- /app/lib/google_analytics/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/google_analytics/client.rb -------------------------------------------------------------------------------- /app/lib/google_analytics/google_analytics_export_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/google_analytics/google_analytics_export_credentials.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/check_links/link_status_requester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/check_links/link_status_requester.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/check_links/link_status_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/check_links/link_status_updater.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/distributed_lock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/distributed_lock.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/export/analytics_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/export/analytics_exporter.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/export/bad_links_url_and_status_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/export/bad_links_url_and_status_exporter.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/export/link_status_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/export/link_status_exporter.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/export/links_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/export/links_exporter.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/export/local_authority_links_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/export/local_authority_links_exporter.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/export/service_links_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/export/service_links_exporter.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/analytics_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/analytics_importer.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/csv_downloader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/csv_downloader.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/enabled_service_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/enabled_service_checker.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/error_message_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/error_message_formatter.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/errors.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/import_comparer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/import_comparer.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/interactions_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/interactions_importer.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/links.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/local_authorities_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/local_authorities_importer.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/missing_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/missing_links.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/processor.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/publishing_api_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/publishing_api_importer.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/response.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/service_interactions_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/service_interactions_importer.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/services_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/services_importer.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/services_tier_importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/services_tier_importer.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/import/summariser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/import/summariser.rb -------------------------------------------------------------------------------- /app/lib/local_links_manager/link_resolver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/lib/local_links_manager/link_resolver.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/interaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/models/interaction.rb -------------------------------------------------------------------------------- /app/models/link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/models/link.rb -------------------------------------------------------------------------------- /app/models/local_authority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/models/local_authority.rb -------------------------------------------------------------------------------- /app/models/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/models/service.rb -------------------------------------------------------------------------------- /app/models/service_interaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/models/service_interaction.rb -------------------------------------------------------------------------------- /app/models/service_tier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/models/service_tier.rb -------------------------------------------------------------------------------- /app/models/tier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/models/tier.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/presenters/interaction_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/interaction_presenter.rb -------------------------------------------------------------------------------- /app/presenters/link_api_response_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/link_api_response_presenter.rb -------------------------------------------------------------------------------- /app/presenters/link_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/link_presenter.rb -------------------------------------------------------------------------------- /app/presenters/links_table_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/links_table_presenter.rb -------------------------------------------------------------------------------- /app/presenters/local_authorities_table_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/local_authorities_table_presenter.rb -------------------------------------------------------------------------------- /app/presenters/local_authority_api_response_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/local_authority_api_response_presenter.rb -------------------------------------------------------------------------------- /app/presenters/local_authority_external_content_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/local_authority_external_content_presenter.rb -------------------------------------------------------------------------------- /app/presenters/local_authority_hash_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/local_authority_hash_presenter.rb -------------------------------------------------------------------------------- /app/presenters/local_authority_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/local_authority_presenter.rb -------------------------------------------------------------------------------- /app/presenters/service_link_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/service_link_presenter.rb -------------------------------------------------------------------------------- /app/presenters/service_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/service_presenter.rb -------------------------------------------------------------------------------- /app/presenters/services_table_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/services_table_presenter.rb -------------------------------------------------------------------------------- /app/presenters/url_status_presentation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/presenters/url_status_presentation.rb -------------------------------------------------------------------------------- /app/services/local_authority_external_content_publisher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/services/local_authority_external_content_publisher.rb -------------------------------------------------------------------------------- /app/validators/non_blank_url_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/validators/non_blank_url_validator.rb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/links/_link_status_alerts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/links/_link_status_alerts.html.erb -------------------------------------------------------------------------------- /app/views/links/_link_table_row.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/links/_link_table_row.html.erb -------------------------------------------------------------------------------- /app/views/links/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/links/edit.html.erb -------------------------------------------------------------------------------- /app/views/links/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/links/index.html.erb -------------------------------------------------------------------------------- /app/views/local_authorities/_filter.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/local_authorities/_filter.html.erb -------------------------------------------------------------------------------- /app/views/local_authorities/download_links_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/local_authorities/download_links_form.html.erb -------------------------------------------------------------------------------- /app/views/local_authorities/edit_url.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/local_authorities/edit_url.html.erb -------------------------------------------------------------------------------- /app/views/local_authorities/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/local_authorities/index.html.erb -------------------------------------------------------------------------------- /app/views/local_authorities/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/local_authorities/show.html.erb -------------------------------------------------------------------------------- /app/views/local_authorities/upload_links_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/local_authorities/upload_links_form.html.erb -------------------------------------------------------------------------------- /app/views/services/_local_authority.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/services/_local_authority.html.erb -------------------------------------------------------------------------------- /app/views/services/_service_links_by_authority.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/services/_service_links_by_authority.html.erb -------------------------------------------------------------------------------- /app/views/services/download_links_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/services/download_links_form.html.erb -------------------------------------------------------------------------------- /app/views/services/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/services/index.html.erb -------------------------------------------------------------------------------- /app/views/services/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/services/show.html.erb -------------------------------------------------------------------------------- /app/views/services/update_owner_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/services/update_owner_form.html.erb -------------------------------------------------------------------------------- /app/views/services/upload_links_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/services/upload_links_form.html.erb -------------------------------------------------------------------------------- /app/views/shared/_download_links_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/shared/_download_links_form.html.erb -------------------------------------------------------------------------------- /app/views/shared/_flash.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/shared/_flash.html.erb -------------------------------------------------------------------------------- /app/views/shared/_links_table.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/shared/_links_table.html.erb -------------------------------------------------------------------------------- /app/views/shared/_upload_links_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/app/views/shared/_upload_links_form.html.erb -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/thrust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/bin/thrust -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/breadcrumbs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/breadcrumbs.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/govuk_publishing_components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/govuk_publishing_components.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/prometheus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/prometheus.rb -------------------------------------------------------------------------------- /config/initializers/secrets_to_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/secrets_to_credentials.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- 1 | # File required to ensure cronjobs are removed 2 | -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /data/local-authorities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/data/local-authorities.csv -------------------------------------------------------------------------------- /db/migrate/20160413110438_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160413110438_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20160415102439_create_local_authorities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160415102439_create_local_authorities.rb -------------------------------------------------------------------------------- /db/migrate/20160427100154_create_interactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160427100154_create_interactions.rb -------------------------------------------------------------------------------- /db/migrate/20160427110426_create_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160427110426_create_services.rb -------------------------------------------------------------------------------- /db/migrate/20160428164235_add_indexes_to_interaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160428164235_add_indexes_to_interaction.rb -------------------------------------------------------------------------------- /db/migrate/20160503101228_add_indexes_to_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160503101228_add_indexes_to_services.rb -------------------------------------------------------------------------------- /db/migrate/20160504113456_create_service_interactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160504113456_create_service_interactions.rb -------------------------------------------------------------------------------- /db/migrate/20160504133456_add_indexes_to_service_interactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160504133456_add_indexes_to_service_interactions.rb -------------------------------------------------------------------------------- /db/migrate/20160511144329_add_tier_to_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160511144329_add_tier_to_services.rb -------------------------------------------------------------------------------- /db/migrate/20160513113110_add_slug_to_services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160513113110_add_slug_to_services.rb -------------------------------------------------------------------------------- /db/migrate/20160517134617_create_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160517134617_create_links.rb -------------------------------------------------------------------------------- /db/migrate/20160523155343_add_enabled_column_to_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160523155343_add_enabled_column_to_service.rb -------------------------------------------------------------------------------- /db/migrate/20160525152805_add_slug_to_interactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160525152805_add_slug_to_interactions.rb -------------------------------------------------------------------------------- /db/migrate/20160615155529_add_index_to_local_authorities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160615155529_add_index_to_local_authorities.rb -------------------------------------------------------------------------------- /db/migrate/20160620155419_add_status_and_link_last_checked_to_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160620155419_add_status_and_link_last_checked_to_links.rb -------------------------------------------------------------------------------- /db/migrate/20160621090108_add_status_and_link_last_checked_to_local_authority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160621090108_add_status_and_link_last_checked_to_local_authority.rb -------------------------------------------------------------------------------- /db/migrate/20160729113356_add_parent_local_authority_id_to_local_authorities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20160729113356_add_parent_local_authority_id_to_local_authorities.rb -------------------------------------------------------------------------------- /db/migrate/20161014123008_strip_urls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20161014123008_strip_urls.rb -------------------------------------------------------------------------------- /db/migrate/20161104150651_add_broken_link_count_to_local_authority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20161104150651_add_broken_link_count_to_local_authority.rb -------------------------------------------------------------------------------- /db/migrate/20161110122049_add_broken_link_count_to_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20161110122049_add_broken_link_count_to_service.rb -------------------------------------------------------------------------------- /db/migrate/20161114122001_create_tier_and_service_tier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20161114122001_create_tier_and_service_tier.rb -------------------------------------------------------------------------------- /db/migrate/20161116153011_delete_old_tier_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20161116153011_delete_old_tier_columns.rb -------------------------------------------------------------------------------- /db/migrate/20161212140755_add_created_at_to_service_tiers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20161212140755_add_created_at_to_service_tiers.rb -------------------------------------------------------------------------------- /db/migrate/20170223163013_add_url_index_to_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20170223163013_add_url_index_to_links.rb -------------------------------------------------------------------------------- /db/migrate/20170405153230_add_linkerrors_and_linkwarnings_to_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20170405153230_add_linkerrors_and_linkwarnings_to_links.rb -------------------------------------------------------------------------------- /db/migrate/20170406133715_add_link_errors_and_link_warnings_to_local_authority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20170406133715_add_link_errors_and_link_warnings_to_local_authority.rb -------------------------------------------------------------------------------- /db/migrate/20170410075304_add_govuk_slug_and_title_to_service_interactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20170410075304_add_govuk_slug_and_title_to_service_interactions.rb -------------------------------------------------------------------------------- /db/migrate/20170411084006_add_default_to_link_errors_and_link_warnings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20170411084006_add_default_to_link_errors_and_link_warnings.rb -------------------------------------------------------------------------------- /db/migrate/20170412223705_add_analytics_index_to_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20170412223705_add_analytics_index_to_links.rb -------------------------------------------------------------------------------- /db/migrate/20170703154357_change_link_errors_and_warnings_to_arrays.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20170703154357_change_link_errors_and_warnings_to_arrays.rb -------------------------------------------------------------------------------- /db/migrate/20170703155105_add_problem_summary_and_suggested_fix_to_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20170703155105_add_problem_summary_and_suggested_fix_to_links.rb -------------------------------------------------------------------------------- /db/migrate/20170713083505_add_index_on_local_authority_homepage_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20170713083505_add_index_on_local_authority_homepage_url.rb -------------------------------------------------------------------------------- /db/migrate/20170926084949_allow_nil_urls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20170926084949_allow_nil_urls.rb -------------------------------------------------------------------------------- /db/migrate/20170928143923_add_status_index_to_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20170928143923_add_status_index_to_links.rb -------------------------------------------------------------------------------- /db/migrate/20190603131841_enable_service1788.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20190603131841_enable_service1788.rb -------------------------------------------------------------------------------- /db/migrate/20190617101145_change_tiers1788.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20190617101145_change_tiers1788.rb -------------------------------------------------------------------------------- /db/migrate/20200406152345_add_index_to_service_tier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20200406152345_add_index_to_service_tier.rb -------------------------------------------------------------------------------- /db/migrate/20200415103445_enable_service1113.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20200415103445_enable_service1113.rb -------------------------------------------------------------------------------- /db/migrate/20200501124957_enable_service_1287.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20200501124957_enable_service_1287.rb -------------------------------------------------------------------------------- /db/migrate/20200604142453_add_default_to_analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20200604142453_add_default_to_analytics.rb -------------------------------------------------------------------------------- /db/migrate/20200605133220_add_constraint_to_analytics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20200605133220_add_constraint_to_analytics.rb -------------------------------------------------------------------------------- /db/migrate/20201105085759_enable_service1826.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20201105085759_enable_service1826.rb -------------------------------------------------------------------------------- /db/migrate/20201218121339_add_country_name_to_local_authority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20201218121339_add_country_name_to_local_authority.rb -------------------------------------------------------------------------------- /db/migrate/20211103173354_add_local_custodian_code_to_local_authority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20211103173354_add_local_custodian_code_to_local_authority.rb -------------------------------------------------------------------------------- /db/migrate/20220221141118_update_leicestershire_street_parties_permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20220221141118_update_leicestershire_street_parties_permission.rb -------------------------------------------------------------------------------- /db/migrate/20230206155322_add_active_end_date_and_active_note_to_local_authority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20230206155322_add_active_end_date_and_active_note_to_local_authority.rb -------------------------------------------------------------------------------- /db/migrate/20230307103144_add_succeeded_by_local_authority_id_to_local_authority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20230307103144_add_succeeded_by_local_authority_id_to_local_authority.rb -------------------------------------------------------------------------------- /db/migrate/20230504115751_allow_null_snac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20230504115751_allow_null_snac.rb -------------------------------------------------------------------------------- /db/migrate/20240318105241_add_content_id_to_local_authorities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20240318105241_add_content_id_to_local_authorities.rb -------------------------------------------------------------------------------- /db/migrate/20240730142812_modify_services_add_organisation_slug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20240730142812_modify_services_add_organisation_slug.rb -------------------------------------------------------------------------------- /db/migrate/20250424092221_add_title_to_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/migrate/20250424092221_add_title_to_links.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docs/adr/adr-001-department-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/adr/adr-001-department-permissions.md -------------------------------------------------------------------------------- /docs/checking-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/checking-links.md -------------------------------------------------------------------------------- /docs/deleting-a-link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/deleting-a-link.md -------------------------------------------------------------------------------- /docs/enable-or-create-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/enable-or-create-service.md -------------------------------------------------------------------------------- /docs/example-api-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/example-api-output.md -------------------------------------------------------------------------------- /docs/exporting-local-authority-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/exporting-local-authority-links.md -------------------------------------------------------------------------------- /docs/google_analytics_custom_import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/google_analytics_custom_import.md -------------------------------------------------------------------------------- /docs/importing-local-authorities-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/importing-local-authorities-data.md -------------------------------------------------------------------------------- /docs/importing-service-links-from-csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/importing-service-links-from-csv.md -------------------------------------------------------------------------------- /docs/local-authority-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/local-authority-changes.md -------------------------------------------------------------------------------- /docs/permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/permissions.md -------------------------------------------------------------------------------- /docs/remove-a-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/remove-a-service.md -------------------------------------------------------------------------------- /docs/service-owners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/docs/service-owners.md -------------------------------------------------------------------------------- /lgsl_lgil_fallback_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lgsl_lgil_fallback_links.csv -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/check-links/link_checker.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/check-links/link_checker.rake -------------------------------------------------------------------------------- /lib/tasks/export/analytics_bad_links_exporter.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/export/analytics_bad_links_exporter.rake -------------------------------------------------------------------------------- /lib/tasks/export/blank_csv_exporter.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/export/blank_csv_exporter.rake -------------------------------------------------------------------------------- /lib/tasks/export/link_exporter.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/export/link_exporter.rake -------------------------------------------------------------------------------- /lib/tasks/export/links_status_csv_exporter.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/export/links_status_csv_exporter.rake -------------------------------------------------------------------------------- /lib/tasks/import/all.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/import/all.rake -------------------------------------------------------------------------------- /lib/tasks/import/google_analytics.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/import/google_analytics.rake -------------------------------------------------------------------------------- /lib/tasks/import/local_authorities.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/import/local_authorities.rake -------------------------------------------------------------------------------- /lib/tasks/import/missing_links.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/import/missing_links.rake -------------------------------------------------------------------------------- /lib/tasks/import/service_interactions.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/import/service_interactions.rake -------------------------------------------------------------------------------- /lib/tasks/import/service_links_from_csv.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/import/service_links_from_csv.rake -------------------------------------------------------------------------------- /lib/tasks/lint.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/lint.rake -------------------------------------------------------------------------------- /lib/tasks/remove_lock.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/remove_lock.rake -------------------------------------------------------------------------------- /lib/tasks/service.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/lib/tasks/service.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/public/500.html -------------------------------------------------------------------------------- /public/data/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/data/local_authorities_csv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/data/local_authorities_csv_spec.rb -------------------------------------------------------------------------------- /spec/factories/clicks_response_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/factories/clicks_response_factory.rb -------------------------------------------------------------------------------- /spec/factories/interactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/factories/interactions.rb -------------------------------------------------------------------------------- /spec/factories/links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/factories/links.rb -------------------------------------------------------------------------------- /spec/factories/local_authorities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/factories/local_authorities.rb -------------------------------------------------------------------------------- /spec/factories/service_interactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/factories/service_interactions.rb -------------------------------------------------------------------------------- /spec/factories/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/factories/services.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/links/index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/features/links/index_spec.rb -------------------------------------------------------------------------------- /spec/features/links/links_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/features/links/links_spec.rb -------------------------------------------------------------------------------- /spec/features/local_authorities/local_authority_download_links_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/features/local_authorities/local_authority_download_links_spec.rb -------------------------------------------------------------------------------- /spec/features/local_authorities/local_authority_index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/features/local_authorities/local_authority_index_spec.rb -------------------------------------------------------------------------------- /spec/features/local_authorities/local_authority_show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/features/local_authorities/local_authority_show_spec.rb -------------------------------------------------------------------------------- /spec/features/local_authorities/local_authority_upload_links_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/features/local_authorities/local_authority_upload_links_spec.rb -------------------------------------------------------------------------------- /spec/features/services/service_index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/features/services/service_index_spec.rb -------------------------------------------------------------------------------- /spec/features/services/service_show_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/features/services/service_show_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/service-links.csv: -------------------------------------------------------------------------------- 1 | slug,url 2 | angus,https://www.example.com/new-service 3 | -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/lib/google_analytics/analytics_export_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/google_analytics/analytics_export_service_spec.rb -------------------------------------------------------------------------------- /spec/lib/google_analytics/analytics_import_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/google_analytics/analytics_import_service_spec.rb -------------------------------------------------------------------------------- /spec/lib/google_analytics/clicks_request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/google_analytics/clicks_request_spec.rb -------------------------------------------------------------------------------- /spec/lib/google_analytics/clicks_response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/google_analytics/clicks_response_spec.rb -------------------------------------------------------------------------------- /spec/lib/google_analytics/client_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/google_analytics/client_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/check_links/link_status_requester_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/check_links/link_status_requester_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/distributed_lock_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/distributed_lock_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/export/analytics_exporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/export/analytics_exporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/export/bad_links_url_and_status_exporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/export/bad_links_url_and_status_exporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/export/fixtures/bad_links_url_status.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/export/fixtures/bad_links_url_status.csv -------------------------------------------------------------------------------- /spec/lib/local-links-manager/export/fixtures/exported_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/export/fixtures/exported_links.csv -------------------------------------------------------------------------------- /spec/lib/local-links-manager/export/fixtures/ni_link.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/export/fixtures/ni_link.csv -------------------------------------------------------------------------------- /spec/lib/local-links-manager/export/links_status_exporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/export/links_status_exporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/export/local_authority_links_exporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/export/local_authority_links_exporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/export/service_links_exporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/export/service_links_exporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/analytics_importer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/analytics_importer_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/csv_downloader_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/csv_downloader_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/enabled_service_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/enabled_service_checker_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/fixtures/imported_links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/fixtures/imported_links.csv -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/fixtures/imported_links_all_errors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/fixtures/imported_links_all_errors.csv -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/fixtures/imported_links_few_errors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/fixtures/imported_links_few_errors.csv -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/fixtures/imported_links_many_errors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/fixtures/imported_links_many_errors.csv -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/fixtures/imported_links_nothing_to_import.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/fixtures/imported_links_nothing_to_import.csv -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/fixtures/local-authorities.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/fixtures/local-authorities.csv -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/fixtures/local_contacts_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/fixtures/local_contacts_sample.csv -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/fixtures/sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/fixtures/sample.csv -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/fixtures/sample_malformed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/fixtures/sample_malformed.csv -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/import_comparer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/import_comparer_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/interactions_importer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/interactions_importer_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/links_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/links_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/local_authorities_importer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/local_authorities_importer_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/missing_links_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/missing_links_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/publishing_api_importer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/publishing_api_importer_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/response_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/service_interactions_importer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/service_interactions_importer_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/services_importer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/services_importer_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/import/services_tier_importer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/import/services_tier_importer_spec.rb -------------------------------------------------------------------------------- /spec/lib/local-links-manager/link_resolver_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/local-links-manager/link_resolver_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/export/blank_csv_exporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/tasks/export/blank_csv_exporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/export/link_exporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/tasks/export/link_exporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/export/links_status_csv_exporter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/tasks/export/links_status_csv_exporter_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/import/all_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/tasks/import/all_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/import/missing_links_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/tasks/import/missing_links_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/import/service_interactions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/tasks/import/service_interactions_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/import/service_links_from_csv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/tasks/import/service_links_from_csv_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/remove_lock_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/tasks/remove_lock_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/lib/tasks/service_spec.rb -------------------------------------------------------------------------------- /spec/models/interaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/models/interaction_spec.rb -------------------------------------------------------------------------------- /spec/models/link_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/models/link_spec.rb -------------------------------------------------------------------------------- /spec/models/local_authority_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/models/local_authority_spec.rb -------------------------------------------------------------------------------- /spec/models/service_interaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/models/service_interaction_spec.rb -------------------------------------------------------------------------------- /spec/models/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/models/service_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/presenters/interaction_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/presenters/interaction_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/link_api_response_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/presenters/link_api_response_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/link_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/presenters/link_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/local_authority_api_response_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/presenters/local_authority_api_response_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/local_authority_external_content_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/presenters/local_authority_external_content_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/local_authority_hash_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/presenters/local_authority_hash_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/local_authority_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/presenters/local_authority_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/service_link_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/presenters/service_link_presenter_spec.rb -------------------------------------------------------------------------------- /spec/presenters/url_status_presentation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/presenters/url_status_presentation_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/api/link_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/requests/api/link_spec.rb -------------------------------------------------------------------------------- /spec/requests/api/local_authority_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/requests/api/local_authority_spec.rb -------------------------------------------------------------------------------- /spec/requests/bad_homepage_csv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/requests/bad_homepage_csv_spec.rb -------------------------------------------------------------------------------- /spec/requests/broken_links_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/requests/broken_links_page_spec.rb -------------------------------------------------------------------------------- /spec/requests/council_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/requests/council_page_spec.rb -------------------------------------------------------------------------------- /spec/requests/edit_link_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/requests/edit_link_page_spec.rb -------------------------------------------------------------------------------- /spec/requests/link_checker_api_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/requests/link_checker_api_spec.rb -------------------------------------------------------------------------------- /spec/requests/link_status_csv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/requests/link_status_csv_spec.rb -------------------------------------------------------------------------------- /spec/requests/services_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/requests/services_page_spec.rb -------------------------------------------------------------------------------- /spec/services/local_authority_external_content_publisher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/services/local_authority_external_content_publisher_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/appear_before_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/support/appear_before_matcher.rb -------------------------------------------------------------------------------- /spec/support/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/support/authentication.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /spec/support/gds_api_adapters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/support/gds_api_adapters.rb -------------------------------------------------------------------------------- /spec/support/shoulda.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/support/shoulda.rb -------------------------------------------------------------------------------- /spec/support/stub_csv_rows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/support/stub_csv_rows.rb -------------------------------------------------------------------------------- /spec/support/timecop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/support/timecop.rb -------------------------------------------------------------------------------- /spec/support/url_status_presentation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/support/url_status_presentation.rb -------------------------------------------------------------------------------- /spec/support/webmock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/support/webmock.rb -------------------------------------------------------------------------------- /spec/system/edit_link_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/system/edit_link_page_spec.rb -------------------------------------------------------------------------------- /spec/system/main_menu_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/system/main_menu_spec.rb -------------------------------------------------------------------------------- /spec/system/service_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/system/service_page_spec.rb -------------------------------------------------------------------------------- /spec/system/services_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/system/services_page_spec.rb -------------------------------------------------------------------------------- /spec/system/upload_links_csv_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/system/upload_links_csv_spec.rb -------------------------------------------------------------------------------- /spec/validators/non_blank_url_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/spec/validators/non_blank_url_validator_spec.rb -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/local-links-manager/HEAD/yarn.lock --------------------------------------------------------------------------------