├── .dockerignore ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── actionlint.yml │ ├── ci.yml │ ├── copy-pr-template-to-dependabot-prs.yml │ ├── deploy.yml │ ├── release.yml │ └── rspec.yml ├── .gitignore ├── .govuk_dependabot_merger.yml ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENCE ├── Procfile ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ └── components │ │ │ ├── markdown-editor │ │ │ ├── blockquote.svg │ │ │ ├── bullets.svg │ │ │ ├── heading-three.svg │ │ │ ├── heading-two.svg │ │ │ ├── link.svg │ │ │ └── numbered-list.svg │ │ │ └── page-preview │ │ │ └── preview-mobile.svg │ ├── javascripts │ │ ├── application.js │ │ ├── components │ │ │ ├── autocomplete.js │ │ │ ├── contact-preview.js │ │ │ ├── image-cropper.js │ │ │ ├── input-length-suggester.js │ │ │ ├── markdown-editor.js │ │ │ ├── multi-section-viewer.js │ │ │ ├── toolbar-dropdown.js │ │ │ └── url-preview.js │ │ ├── modal │ │ │ ├── modal-editor.js │ │ │ ├── modal-fetch.js │ │ │ └── modal-workflow.js │ │ └── modules │ │ │ ├── contact-embed-modal.js │ │ │ ├── gtm-copy-paste-listener.js │ │ │ ├── gtm-reorder-listener.js │ │ │ ├── gtm-topics-listener.js │ │ │ ├── inline-attachment-modal.js │ │ │ ├── inline-image-modal.js │ │ │ ├── video-embed-modal.js │ │ │ └── warn-before-unload.js │ └── stylesheets │ │ ├── application.scss │ │ ├── components │ │ ├── _attachment-meta.scss │ │ ├── _autocomplete.scss │ │ ├── _contact-preview.scss │ │ ├── _formatted-text.scss │ │ ├── _image-cropper.scss │ │ ├── _image-with-metadata.scss │ │ ├── _input-length-suggester.scss │ │ ├── _inset-prompt.scss │ │ ├── _loading-spinner.scss │ │ ├── _markdown-editor.scss │ │ ├── _markdown-guidance.scss │ │ ├── _media-with-actions.scss │ │ ├── _metadata.scss │ │ ├── _miller-columns.scss │ │ ├── _multi-section-viewer.scss │ │ ├── _page-preview.scss │ │ ├── _secondary-navigation.scss │ │ ├── _side-navigation.scss │ │ ├── _toolbar-dropdown.scss │ │ └── _url-preview.scss │ │ ├── core │ │ └── _link.scss │ │ ├── objects │ │ ├── _grid.scss │ │ ├── _history.scss │ │ ├── _pane.scss │ │ └── _side.scss │ │ └── utilities │ │ ├── _display.scss │ │ └── _overwrites.scss ├── controllers │ ├── access_limit_controller.rb │ ├── application_controller.rb │ ├── backdate_controller.rb │ ├── contact_embed_controller.rb │ ├── content_controller.rb │ ├── debug_controller.rb │ ├── documents_controller.rb │ ├── editions_controller.rb │ ├── errors_controller.rb │ ├── featured_attachments_controller.rb │ ├── file_attachments_controller.rb │ ├── govspeak_preview_controller.rb │ ├── healthcheck_controller.rb │ ├── history_mode_controller.rb │ ├── images_controller.rb │ ├── internal_notes_controller.rb │ ├── lead_image_controller.rb │ ├── new_document_controller.rb │ ├── preview_controller.rb │ ├── publish_controller.rb │ ├── publisher_information_controller.rb │ ├── remove_controller.rb │ ├── review_controller.rb │ ├── schedule_controller.rb │ ├── schedule_proposal_controller.rb │ ├── tags_controller.rb │ ├── topics_controller.rb │ ├── unwithdraw_controller.rb │ ├── video_embed_controller.rb │ ├── whitehall_migration_controller.rb │ └── withdraw_controller.rb ├── helpers │ ├── actions_helper.rb │ ├── application_helper.rb │ ├── content_data_url_helper.rb │ ├── document_type_helper.rb │ ├── edition_url_helper.rb │ ├── file_attachment_helper.rb │ └── time_options_helper.rb ├── interactors │ ├── access_limit │ │ └── update_interactor.rb │ ├── application_interactor.rb │ ├── backdate │ │ ├── destroy_interactor.rb │ │ └── update_interactor.rb │ ├── contact_embed │ │ └── create_interactor.rb │ ├── content │ │ └── update_interactor.rb │ ├── editions │ │ ├── create_interactor.rb │ │ └── destroy_interactor.rb │ ├── featured_attachments │ │ └── update_order_interactor.rb │ ├── file_attachments │ │ ├── create_interactor.rb │ │ ├── destroy_interactor.rb │ │ ├── preview_interactor.rb │ │ ├── update_file_interactor.rb │ │ └── update_interactor.rb │ ├── history_mode │ │ └── update_interactor.rb │ ├── images │ │ ├── create_interactor.rb │ │ ├── destroy_interactor.rb │ │ ├── update_crop_interactor.rb │ │ └── update_interactor.rb │ ├── internal_notes │ │ └── create_interactor.rb │ ├── lead_image │ │ ├── choose_interactor.rb │ │ └── remove_interactor.rb │ ├── new_document │ │ └── select_interactor.rb │ ├── preview │ │ └── create_interactor.rb │ ├── publish │ │ ├── confirmation_interactor.rb │ │ └── publish_interactor.rb │ ├── review │ │ ├── approve_interactor.rb │ │ └── submit_for2i_interactor.rb │ ├── schedule │ │ ├── create_interactor.rb │ │ ├── destroy_interactor.rb │ │ ├── new_interactor.rb │ │ └── update_interactor.rb │ ├── schedule_proposal │ │ ├── destroy_interactor.rb │ │ └── update_interactor.rb │ ├── tags │ │ └── update_interactor.rb │ ├── topics │ │ └── update_interactor.rb │ ├── unwithdraw │ │ └── unwithdraw_interactor.rb │ ├── video_embed │ │ └── create_interactor.rb │ └── withdraw │ │ └── create_interactor.rb ├── jobs │ ├── application_job.rb │ ├── asset_cleanup_job.rb │ ├── email_delivery_job.rb │ ├── populate_bulk_data_job.rb │ ├── resync_document_job.rb │ ├── scheduled_publishing_job.rb │ └── whitehall_document_import_job.rb ├── mailers │ ├── application_mailer.rb │ ├── publish_mailer.rb │ └── scheduled_publish_mailer.rb ├── models │ ├── access_limit.rb │ ├── application_record.rb │ ├── concerns │ │ └── initialize_with_hash.rb │ ├── content_revision.rb │ ├── content_revision │ │ └── contents_validator.rb │ ├── document.rb │ ├── document_topics.rb │ ├── document_type.rb │ ├── document_type │ │ ├── body_field.rb │ │ ├── multi_tag_field.rb │ │ ├── organisations_field.rb │ │ ├── primary_publishing_organisation_field.rb │ │ ├── role_appointments_field.rb │ │ ├── summary_field.rb │ │ ├── title_and_base_path_field.rb │ │ ├── topical_events_field.rb │ │ └── world_locations_field.rb │ ├── document_type_selection.rb │ ├── document_type_selection │ │ └── option.rb │ ├── edition.rb │ ├── file_attachment.rb │ ├── file_attachment │ │ ├── asset.rb │ │ ├── blob_revision.rb │ │ ├── metadata_revision.rb │ │ └── revision.rb │ ├── government.rb │ ├── image.rb │ ├── image │ │ ├── asset.rb │ │ ├── blob_revision.rb │ │ ├── metadata_revision.rb │ │ └── revision.rb │ ├── internal_note.rb │ ├── metadata_revision.rb │ ├── metadata_revision │ │ ├── change_history_validator.rb │ │ └── featured_attachment_ordering_validator.rb │ ├── removal.rb │ ├── revision.rb │ ├── scheduling.rb │ ├── status.rb │ ├── tags_revision.rb │ ├── tags_revision │ │ └── tags_validator.rb │ ├── timeline_entry.rb │ ├── timeline_entry │ │ └── whitehall_imported_entry.rb │ ├── topic.rb │ ├── user.rb │ ├── whitehall_migration.rb │ ├── whitehall_migration │ │ ├── asset_import.rb │ │ ├── document_export.rb │ │ └── document_import.rb │ └── withdrawal.rb ├── services │ ├── assign_edition_status_service.rb │ ├── create_document_service.rb │ ├── create_file_attachment_blob_service.rb │ ├── create_image_blob_service.rb │ ├── create_image_blob_service │ │ └── centre_crop.rb │ ├── create_next_edition_service.rb │ ├── delete_draft_assets_service.rb │ ├── discard_draft_edition_service.rb │ ├── discard_path_reservations_service.rb │ ├── edit_draft_edition_service.rb │ ├── failsafe_draft_preview_service.rb │ ├── generate_base_path_service.rb │ ├── generate_unique_filename_service.rb │ ├── preview_asset_service.rb │ ├── preview_asset_service │ │ ├── payload.rb │ │ └── uploaded_file.rb │ ├── preview_draft_edition_service.rb │ ├── publish_assets_service.rb │ ├── publish_draft_edition_service.rb │ ├── remove_document_service.rb │ ├── rescue_scheduled_publishing_service.rb │ ├── resync_document_service.rb │ ├── schedule_publish_service.rb │ ├── schedule_publish_service │ │ └── payload.rb │ └── withdraw_document_service.rb └── views │ ├── access_limit │ ├── edit.html.erb │ └── edit_api_down.html.erb │ ├── backdate │ └── edit.html.erb │ ├── components │ ├── _attachment_meta.html.erb │ ├── _autocomplete.html.erb │ ├── _contact_preview.html.erb │ ├── _formatted_text.html.erb │ ├── _image_cropper.html.erb │ ├── _image_with_metadata.html.erb │ ├── _input_length_suggester.html.erb │ ├── _inset_prompt.html.erb │ ├── _loading_spinner.html.erb │ ├── _markdown_editor.html.erb │ ├── _markdown_guidance.html.erb │ ├── _media_with_actions.erb │ ├── _metadata.html.erb │ ├── _multi_section_viewer.html.erb │ ├── _page_preview.html.erb │ ├── _secondary_navigation.html.erb │ ├── _side_navigation.html.erb │ ├── _toolbar_dropdown.html.erb │ ├── _url_preview.html.erb │ └── docs │ │ ├── attachment_meta.yml │ │ ├── autocomplete.yml │ │ ├── contact_preview.yml │ │ ├── image_cropper.yml │ │ ├── image_with_metadata.yml │ │ ├── input_length_suggester.yml │ │ ├── inset_prompt.yml │ │ ├── loading_spinner.yml │ │ ├── markdown_editor.yml │ │ ├── media_with_actions.yml │ │ ├── metadata.yml │ │ ├── multi_section_viewer.yml │ │ ├── page_preview.yml │ │ ├── secondary_navigation.yml │ │ ├── side_navigation.yml │ │ ├── toolbar_dropdown.yml │ │ └── url_preview.yml │ ├── contact_embed │ ├── new.html.erb │ └── new_api_down.html.erb │ ├── content │ ├── edit.html.erb │ └── edit │ │ ├── _body_field.html.erb │ │ ├── _change_notes.html.erb │ │ ├── _summary_field.html.erb │ │ └── _title_and_base_path_field.html.erb │ ├── debug │ └── index.html.erb │ ├── documents │ ├── _secondary_navigation.html.erb │ ├── access_limited.html.erb │ ├── forbidden.html.erb │ ├── history.html.erb │ ├── history │ │ ├── _content_publisher_entry.html.erb │ │ └── _whitehall_entry.html.erb │ ├── index.html.erb │ ├── index │ │ ├── _filters.html.erb │ │ └── _results.html.erb │ ├── show.html.erb │ └── show │ │ ├── _actions.html.erb │ │ ├── _content_settings.html.erb │ │ ├── _contents.html.erb │ │ ├── _debug.html.erb │ │ ├── _document_metadata.html.erb │ │ ├── _external_links.html.erb │ │ ├── _failed_to_publish_notice.html.erb │ │ ├── _featured_attachments.html.erb │ │ ├── _historical_notice.html.erb │ │ ├── _lead_image.html.erb │ │ ├── _proposed_scheduling_notice.html.erb │ │ ├── _requirements.html.erb │ │ ├── _scheduled_notice.html.erb │ │ ├── _submitted_for_review.html.erb │ │ ├── _tags.html.erb │ │ ├── _topics.html.erb │ │ ├── _withdrawn_notice.html.erb │ │ ├── contents │ │ ├── _body_field.html.erb │ │ ├── _summary_field.html.erb │ │ └── _title_and_base_path_field.html.erb │ │ └── tags │ │ ├── _multi_tag_field.html.erb │ │ ├── _organisations_field.html.erb │ │ ├── _primary_publishing_organisation_field.html.erb │ │ ├── _role_appointments_field.html.erb │ │ ├── _topical_events_field.html.erb │ │ └── _world_locations_field.html.erb │ ├── editions │ └── confirm_delete_draft.html.erb │ ├── errors │ ├── _error.html.erb │ ├── bad_request.html.erb │ ├── forbidden.html.erb │ ├── internal_server_error.html.erb │ ├── local_data_unavailable.html.erb │ ├── not_found.html.erb │ └── unprocessable_entity.html.erb │ ├── featured_attachments │ ├── _featured_attachment.html.erb │ ├── index.html.erb │ └── reorder.html.erb │ ├── file_attachments │ ├── _file_attachment.html.erb │ ├── confirm_delete.html.erb │ ├── edit.html.erb │ ├── edit │ │ ├── _act_paper.html.erb │ │ ├── _command_paper.html.erb │ │ └── _official_document.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── preview_pending.html.erb │ ├── replace.html.erb │ └── show.html.erb │ ├── history_mode │ ├── edit.html.erb │ └── non_managing_editor.html.erb │ ├── images │ ├── _image.html.erb │ ├── _lead_image.html.erb │ ├── confirm_delete.html.erb │ ├── crop.html.erb │ ├── edit.html.erb │ └── index.html.erb │ ├── layouts │ ├── _google_tag_manager.html.erb │ ├── _modal_error.html.erb │ ├── _phase_banner_elements.html.erb │ ├── application.html.erb │ └── modal.html.erb │ ├── missing_permissions │ ├── update_history_mode.govspeak.md │ └── update_history_mode.html.erb │ ├── new_document │ ├── guidance.govspeak.md │ ├── guidance.html.erb │ └── show.html.erb │ ├── preview │ └── show.html.erb │ ├── publish │ ├── confirmation.html.erb │ └── published.html.erb │ ├── publish_mailer │ └── publish_email.text.erb │ ├── publisher_information │ ├── _publisher_info_nav.html.erb │ ├── beta_capabilities.html.erb │ ├── how_to_use_publisher.html.erb │ ├── publisher_updates.html.erb │ ├── request_training.html.erb │ └── what_managing_editors_can_do.html.erb │ ├── remove │ ├── remove.govspeak.md │ └── remove.html.erb │ ├── schedule │ ├── _datetime.html.erb │ ├── edit.html.erb │ ├── new.html.erb │ └── scheduled.html.erb │ ├── schedule_proposal │ └── edit.html.erb │ ├── scheduled_publish_mailer │ ├── failure_email.text.erb │ └── success_email.text.erb │ ├── tags │ ├── edit.html.erb │ ├── edit │ │ ├── _multi_tag_field.html.erb │ │ ├── _organisations_field.html.erb │ │ ├── _primary_publishing_organisation_field.html.erb │ │ ├── _role_appointments_field.html.erb │ │ ├── _topical_events_field.html.erb │ │ └── _world_locations_field.html.erb │ └── edit_api_down.html.erb │ ├── topics │ ├── edit.html.erb │ └── edit_api_down.html.erb │ ├── unwithdraw │ ├── confirm.html.erb │ ├── non_managing_editor.govspeak.md │ └── non_managing_editor.html.erb │ ├── video_embed │ └── new.html.erb │ ├── whitehall_migration │ ├── _document_imports_list.html.erb │ ├── document_import.html.erb │ ├── document_imports.html.erb │ └── show.html.erb │ └── withdraw │ ├── new.html.erb │ ├── non_managing_editor.govspeak.md │ └── non_managing_editor.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup └── update ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.yml ├── database.yml ├── document_type_selections.yml ├── document_types.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── bulk_data_rack_middleware.rb │ ├── byebug.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── dartsass.rb │ ├── filter_parameter_logging.rb │ ├── govuk_error.rb │ ├── govuk_publishing_components.rb │ ├── inflections.rb │ ├── inline_svg.rb │ ├── mail_recipient_interceptor.rb │ ├── mime_types.rb │ ├── permissions_policy.rb │ ├── prometheus.rb │ ├── secrets_to_credentials.rb │ ├── sidekiq.rb │ ├── time_formats.rb │ └── wrap_parameters.rb ├── locales │ └── en │ │ ├── access_limit │ │ └── edit.yml │ │ ├── application.yml │ │ ├── backdate │ │ └── edit.yml │ │ ├── contact_embed │ │ └── new.yml │ │ ├── content │ │ └── edit.yml │ │ ├── document_type_selections.yml │ │ ├── document_types.yml │ │ ├── documents.yml │ │ ├── documents │ │ ├── access_limited.yml │ │ ├── history.yml │ │ ├── index.yml │ │ └── show.yml │ │ ├── editions │ │ └── confirm_delete_draft.yml │ │ ├── errors │ │ ├── bad_request.yml │ │ ├── forbidden.yml │ │ ├── internal_server_error.yml │ │ ├── local_data_unavailable.yml │ │ ├── not_found.yml │ │ └── unprocessable_entity.yml │ │ ├── featured_attachments │ │ ├── index.yml │ │ └── reorder.yml │ │ ├── file_attachments │ │ ├── confirm_delete.yml │ │ ├── edit.yml │ │ ├── index.yml │ │ ├── new.yml │ │ ├── preview_pending.yml │ │ ├── replace.yml │ │ └── show.yml │ │ ├── history_mode │ │ ├── edit.yml │ │ └── non_managing_editor.yml │ │ ├── images │ │ ├── confirm_delete.yml │ │ ├── crop.yml │ │ ├── edit.yml │ │ └── index.yml │ │ ├── missing_permissions │ │ └── update_history_mode.yml │ │ ├── new_document │ │ └── guidance.yml │ │ ├── preview │ │ └── show.yml │ │ ├── publish │ │ ├── confirmation.yml │ │ └── published.yml │ │ ├── publish_mailer │ │ └── publish_email.yml │ │ ├── publisher_information │ │ ├── beta_capabilities.yml │ │ ├── how_to_use_publisher.yml │ │ ├── publisher_updates.yml │ │ ├── request_training.yml │ │ └── what_managing_editors_can_do.yml │ │ ├── remove │ │ └── remove.yml │ │ ├── requirements.yml │ │ ├── schedule │ │ ├── edit.yml │ │ ├── new.yml │ │ └── scheduled.yml │ │ ├── schedule_proposal │ │ └── edit.yml │ │ ├── scheduled_publish_mailer │ │ ├── failure_email.yml │ │ └── success_email.yml │ │ ├── tags │ │ └── edit.yml │ │ ├── topics │ │ └── edit.yml │ │ ├── unwithdraw │ │ ├── confirm.yml │ │ └── unwithdraw.yml │ │ ├── user_facing_states.yml │ │ ├── video_embed │ │ └── new.yml │ │ └── withdraw │ │ └── withdraw.yml ├── political_organisations.yml ├── puma.rb ├── routes.rb ├── secrets.yml ├── sidekiq.yml ├── spring.rb ├── storage.yml └── unicorn.rb ├── db ├── schema.rb └── seeds.rb ├── docs ├── adr │ ├── 0001-record-architecture-decisions.md │ ├── 0002-use-local-datastore.md │ ├── 0003-initial-domain-modelling.md │ ├── 0004-editing-microcopy.md │ ├── 0005-avoiding-initialisation-flickers.md │ ├── 0006-tagging-governments.md │ ├── 0007-minimal-model.md │ ├── 0008-restricted-deletion.md │ ├── 0009-modelling-history.md │ ├── 0009 │ │ ├── domain-model-diagram.plantuml │ │ ├── domain-model-diagram.png │ │ ├── image-revision-diagram.plantuml │ │ ├── image-revision-diagram.png │ │ ├── main-concepts-diagram.plantuml │ │ ├── main-concepts-diagram.png │ │ ├── revision-diagram.plantuml │ │ └── revision-diagram.png │ ├── 0010-sending-email-notifications.md │ ├── 0011-moving-business-logic-out-of-controllers.md │ ├── 0012-file-attachment-rendering.md │ ├── 0013-permitted-deletion.md │ ├── 0014-political-and-government-tagging.md │ ├── 0015-bulk-data-loading.md │ └── 0016-publishing-times-and-change-history.md ├── approach-to-analytics.md ├── edit-change-note-history.md ├── history-mode.md ├── import-from-whitehall.md ├── removing-documents.md ├── scheduled-publishing.md ├── testing-strategy.md └── user-permissions.md ├── lib ├── bulk_data.rb ├── bulk_data │ ├── cache.rb │ └── government_repository.rb ├── callable.rb ├── contacts.rb ├── date_parser.rb ├── datetime_parser.rb ├── edition_assertions.rb ├── edition_filter.rb ├── edition_updater.rb ├── gds_api │ └── whitehall_export.rb ├── govspeak_document.rb ├── govspeak_document │ ├── in_app_options.rb │ ├── options.rb │ └── payload_options.rb ├── healthcheck │ ├── active_storage.rb │ └── government_data_check.rb ├── image_normaliser.rb ├── image_normaliser │ └── temp_image.rb ├── linkables.rb ├── mail_recipient_interceptor.rb ├── organisations.rb ├── political_edition_identifier.rb ├── publishing_api_payload.rb ├── publishing_api_payload │ ├── file_attachment_payload.rb │ └── history.rb ├── requirements │ ├── checker.rb │ ├── checker_issues.rb │ ├── form │ │ ├── access_limit_checker.rb │ │ ├── backdate_checker.rb │ │ ├── content_checker.rb │ │ ├── file_attachment_metadata_checker.rb │ │ ├── file_attachment_upload_checker.rb │ │ ├── image_metadata_checker.rb │ │ ├── image_upload_checker.rb │ │ ├── publish_time_checker.rb │ │ ├── tags_checker.rb │ │ ├── video_embed_checker.rb │ │ └── withdrawal_checker.rb │ ├── issue.rb │ ├── preview │ │ ├── content_checker.rb │ │ ├── edition_checker.rb │ │ └── tags_checker.rb │ └── publish │ │ ├── content_checker.rb │ │ ├── edition_checker.rb │ │ ├── file_attachments_checker.rb │ │ └── topic_checker.rb ├── tasks │ ├── .keep │ ├── assets.rake │ ├── brakeman.rake │ ├── change_history.rake │ ├── development_permissions.rake │ ├── export.rake │ ├── factorybot.rake │ ├── i18n_cov.rake │ ├── import.rake │ ├── jasmine.rake │ ├── lint.rake │ ├── remove.rake │ ├── resync.rake │ └── scheduling.rake ├── topic_index.rb ├── versioning │ ├── base_updater.rb │ ├── file_attachment_revision_updater.rb │ ├── image_revision_updater.rb │ ├── revision_updater.rb │ ├── revision_updater │ │ ├── file_attachment.rb │ │ └── image.rb │ └── sub_revision_updater.rb └── whitehall_importer │ ├── abort_import_error.rb │ ├── change_history.rb │ ├── clear_linkset_links.rb │ ├── create_edition.rb │ ├── create_file_attachment_revision.rb │ ├── create_image_revision.rb │ ├── create_migration.rb │ ├── create_revision.rb │ ├── edition_history.rb │ ├── embed_body_references.rb │ ├── import.rb │ ├── integrity_check_error.rb │ ├── integrity_checker.rb │ ├── integrity_checker │ ├── body_text_check.rb │ ├── change_history_check.rb │ └── unpublishing_check.rb │ ├── migrate_assets.rb │ ├── migrate_state.rb │ └── sync.rb ├── log └── .keep ├── package.json ├── spec ├── db │ └── scrub_access_limited_spec.rb ├── factories │ ├── access_limit_factory.rb │ ├── content_revision_factory.rb │ ├── document_factory.rb │ ├── document_type_factory.rb │ ├── edition_factory.rb │ ├── file_attachment_blob_revision_factory.rb │ ├── file_attachment_factory.rb │ ├── file_attachment_metadata_revision_factory.rb │ ├── file_attachment_revision_factory.rb │ ├── government_factory.rb │ ├── guidance_factory.rb │ ├── image_blob_revision_factory.rb │ ├── image_factory.rb │ ├── image_metadata_revision_factory.rb │ ├── image_revision_factory.rb │ ├── internal_note_factory.rb │ ├── metadata_revision_factory.rb │ ├── removal_factory.rb │ ├── revision_factory.rb │ ├── scheduling_factory.rb │ ├── status_factory.rb │ ├── tags_revision_factory.rb │ ├── timeline_entry_factory.rb │ ├── user_factory.rb │ ├── whitehall_export │ │ ├── document_factory.rb │ │ ├── edition_factory.rb │ │ ├── editorial_remark_event.rb │ │ ├── fact_check_event_factory.rb │ │ ├── file_attachment_factory.rb │ │ ├── image_factory.rb │ │ ├── index_document_factory.rb │ │ ├── index_factory.rb │ │ ├── organisation_factory.rb │ │ ├── revision_history_event.rb │ │ ├── translation_factory.rb │ │ ├── unpublishing_factory.rb │ │ └── user_factory.rb │ ├── whitehall_migration_asset_import_factory.rb │ ├── whitehall_migration_document_import_factory.rb │ ├── whitehall_migration_factory.rb │ └── withdrawal_factory.rb ├── features │ ├── debug_spec.rb │ ├── editing_content │ │ ├── edit_edition_spec.rb │ │ ├── govspeak_preview_spec.rb │ │ ├── insert_contact_embed_spec.rb │ │ ├── insert_inline_file_attachment_spec.rb │ │ ├── insert_inline_image_spec.rb │ │ ├── insert_video_embed_spec.rb │ │ └── url_preview_spec.rb │ ├── editing_content_settings │ │ ├── backdate_spec.rb │ │ ├── edit_access_limit_spec.rb │ │ ├── enforce_access_limit_spec.rb │ │ └── history_mode_spec.rb │ ├── editing_featured_attachments │ │ └── reorder_attachments_spec.rb │ ├── editing_file_attachments │ │ ├── delete_file_attachment_spec.rb │ │ ├── download_file_attachment_spec.rb │ │ ├── edit_file_attachment_spec.rb │ │ ├── preview_file_attachment_spec.rb │ │ ├── replace_file_attachment_file_spec.rb │ │ └── upload_file_attachment_spec.rb │ ├── editing_images │ │ ├── choose_lead_image_spec.rb │ │ ├── delete_image_spec.rb │ │ ├── download_image_spec.rb │ │ ├── edit_image_spec.rb │ │ ├── remove_lead_image_spec.rb │ │ └── upload_image_spec.rb │ ├── editing_tags │ │ └── edit_tags_spec.rb │ ├── editing_topics │ │ ├── edit_topics_search_spec.rb │ │ └── edit_topics_spec.rb │ ├── finding │ │ ├── index_details_spec.rb │ │ ├── index_filtering_spec.rb │ │ ├── index_ordering_spec.rb │ │ └── index_pagination_spec.rb │ ├── formats │ │ ├── news_article_spec.rb │ │ └── publication_spec.rb │ ├── history │ │ ├── internal_note_spec.rb │ │ └── pagination_spec.rb │ ├── publisher_information │ │ └── visit_publisher_information_pages_spec.rb │ ├── removing │ │ └── remove_spec.rb │ ├── scheduling │ │ ├── clear_proposed_publish_time_spec.rb │ │ ├── propose_publish_time_and_schedule_spec.rb │ │ ├── propose_publish_time_spec.rb │ │ ├── scheduled_publishing_failed_spec.rb │ │ ├── scheduled_publishing_spec.rb │ │ ├── scheduled_publishing_without_review_spec.rb │ │ ├── unschedule_spec.rb │ │ ├── update_proposed_publish_time_spec.rb │ │ └── update_publish_time_spec.rb │ ├── withdrawing │ │ ├── edit_withdrawal_spec.rb │ │ ├── unwithdraw_spec.rb │ │ └── withdraw_spec.rb │ └── workflow │ │ ├── create_document_spec.rb │ │ ├── delete_draft_spec.rb │ │ ├── edition_spec.rb │ │ ├── preview_spec.rb │ │ ├── publish_spec.rb │ │ ├── publish_without_review_spec.rb │ │ └── submit_for_2i_spec.rb ├── fixtures │ └── files │ │ ├── 1000x1000.jpg │ │ ├── 1000x1000.png │ │ ├── 100x100.jpg │ │ ├── 13kb-1-page-attachment.pdf │ │ ├── 640x960-rotated.jpg │ │ ├── 960x640-rotated.jpg │ │ ├── 960x640.jpg │ │ ├── Bad $ name.png │ │ ├── animated-gif.gif │ │ ├── bad_file.rb │ │ ├── coffee.svg │ │ ├── no_extension │ │ ├── replacement-text-file-58bytes.txt │ │ ├── text-file-74bytes.txt │ │ ├── unsupported_type_in_zip.zip │ │ └── valid_zip.zip ├── helpers │ ├── application_helper_spec.rb │ ├── document_type_helper_spec.rb │ └── edition_url_helper_spec.rb ├── interactors │ ├── content │ │ └── update_interactor_spec.rb │ ├── editions │ │ ├── create_interactor_spec.rb │ │ └── destroy_interactor_spec.rb │ ├── featured_attachments │ │ └── update_order_interactor_spec.rb │ ├── file_attachments │ │ ├── create_interactor_spec.rb │ │ ├── preview_interactor_spec.rb │ │ ├── update_file_interactor_spec.rb │ │ └── update_interactor_spec.rb │ ├── history_mode │ │ └── update_interactor_spec.rb │ ├── images │ │ └── create_interactor_spec.rb │ ├── new_document │ │ └── select_interactor_spec.rb │ ├── preview │ │ └── create_interactor_spec.rb │ └── schedule │ │ ├── create_interactor_spec.rb │ │ ├── destroy_interactor_spec.rb │ │ └── update_interactor_spec.rb ├── javascripts │ ├── components │ │ ├── contact-preview-spec.js │ │ ├── input-length-suggester-spec.js │ │ ├── markdown-editor-spec.js │ │ ├── multi-section-viewer-spec.js │ │ ├── toolbar-dropdown-spec.js │ │ └── url-preview-spec.js │ ├── helpers │ │ ├── fetch-mock.js │ │ ├── gtm-mock.js │ │ ├── markdown-editor.js │ │ └── modal-dialogue.js │ ├── modal │ │ ├── modal-editor-spec.js │ │ ├── modal-fetch-spec.js │ │ └── modal-workflow-spec.js │ └── modules │ │ ├── contact-embed-modal-spec.js │ │ ├── gtm-copy-paste-listener-spec.js │ │ ├── gtm-reorder-listener-spec.js │ │ ├── gtm-topic-listener-spec.js │ │ ├── inline-attachment-modal-spec.js │ │ ├── inline-image-modal-spec.js │ │ ├── video-embed-modal-spec.js │ │ └── warn-before-unload-spec.js ├── jobs │ ├── application_job_spec.rb │ ├── asset_cleanup_job_spec.rb │ ├── populate_bulk_data_job_spec.rb │ ├── resync_document_job_spec.rb │ ├── scheduled_publishing_job_spec.rb │ └── whitehall_document_import_job_spec.rb ├── lib │ ├── bulk_data │ │ ├── cache_spec.rb │ │ └── government_repository_spec.rb │ ├── contacts_spec.rb │ ├── date_parser_spec.rb │ ├── datetime_parser_spec.rb │ ├── edition_assertions_spec.rb │ ├── edition_filter_spec.rb │ ├── edition_updater_spec.rb │ ├── gds_api │ │ └── whitehall_export_spec.rb │ ├── govspeak_document │ │ ├── in_app_options_spec.rb │ │ ├── options_spec.rb │ │ └── payload_options_spec.rb │ ├── healthcheck │ │ ├── active_storage_spec.rb │ │ └── government_data_check_spec.rb │ ├── image_normaliser │ │ └── temp_image_spec.rb │ ├── image_normaliser_spec.rb │ ├── linkables_spec.rb │ ├── mail_recipient_interceptor_spec.rb │ ├── organisations_spec.rb │ ├── political_edition_identifier_spec.rb │ ├── publishing_api_payload │ │ ├── file_attachment_payload_spec.rb │ │ └── history_spec.rb │ ├── publishing_api_payload_spec.rb │ ├── requirements │ │ ├── form │ │ │ ├── access_limit_checker_spec.rb │ │ │ ├── backdate_checker_spec.rb │ │ │ ├── file_attachment_metadata_checker_spec.rb │ │ │ ├── file_attachment_upload_checker_spec.rb │ │ │ ├── image_metadata_checker_spec.rb │ │ │ ├── image_upload_checker_spec.rb │ │ │ ├── publish_time_checker_spec.rb │ │ │ ├── tags_checker_spec.rb │ │ │ ├── video_embed_checker_spec.rb │ │ │ └── withdrawal_checker_spec.rb │ │ ├── preview │ │ │ ├── content_checker_spec.rb │ │ │ ├── edition_checker_spec.rb │ │ │ └── tags_checker_spec.rb │ │ └── publish │ │ │ ├── content_checker_spec.rb │ │ │ ├── edition_checker_spec.rb │ │ │ ├── file_attachments_checker_spec.rb │ │ │ └── topic_checker_spec.rb │ ├── tasks │ │ ├── change_history_spec.rb │ │ ├── export_spec.rb │ │ ├── import_spec.rb │ │ ├── remove_spec.rb │ │ ├── resync_spec.rb │ │ └── scheduling_spec.rb │ ├── versioning │ │ ├── file_attachment_revision_updater_spec.rb │ │ ├── image_revision_updater_spec.rb │ │ ├── revision_updater │ │ │ ├── file_attachment_spec.rb │ │ │ └── image_spec.rb │ │ └── revision_updater_spec.rb │ └── whitehall_importer │ │ ├── change_history_spec.rb │ │ ├── clear_linkset_links_spec.rb │ │ ├── create_edition_spec.rb │ │ ├── create_file_attachment_revision_spec.rb │ │ ├── create_image_revision_spec.rb │ │ ├── create_migration_spec.rb │ │ ├── create_revision_spec.rb │ │ ├── edition_history_spec.rb │ │ ├── embed_body_references_spec.rb │ │ ├── import_spec.rb │ │ ├── integrity_checker │ │ ├── body_text_check_spec.rb │ │ ├── change_history_check_spec.rb │ │ └── unpublishing_check_spec.rb │ │ ├── integrity_checker_spec.rb │ │ ├── migrate_assets_spec.rb │ │ ├── migrate_state_spec.rb │ │ └── sync_spec.rb ├── mailers │ ├── publish_mailer_spec.rb │ └── scheduled_publish_mailer_spec.rb ├── models │ ├── content_revision │ │ └── contents_validator_spec.rb │ ├── document_spec.rb │ ├── document_topics_spec.rb │ ├── document_type │ │ ├── body_field_spec.rb │ │ ├── multi_tag_field_spec.rb │ │ ├── organisations_field_spec.rb │ │ ├── primary_publishing_organisation_field_spec.rb │ │ ├── role_appointments_field_spec.rb │ │ ├── summary_field_spec.rb │ │ ├── title_and_base_path_field_spec.rb │ │ ├── topical_events_field_spec.rb │ │ └── world_locations_field_spec.rb │ ├── document_type_selection │ │ └── option_spec.rb │ ├── document_type_selection_spec.rb │ ├── document_type_spec.rb │ ├── edition_spec.rb │ ├── file_attachment │ │ └── blob_revision_spec.rb │ ├── government_spec.rb │ ├── image │ │ └── blob_revision_spec.rb │ ├── metadata_revision │ │ ├── change_history_validator_spec.rb │ │ └── featured_attachment_ordering_validator_spec.rb │ ├── revision_spec.rb │ ├── status_spec.rb │ ├── tags_revision │ │ └── tags_validator_spec.rb │ ├── timeline_entry_spec.rb │ ├── user_spec.rb │ ├── whitehall_migration │ │ ├── asset_import_spec.rb │ │ ├── document_export_spec.rb │ │ └── document_import_spec.rb │ └── whitehall_migration_spec.rb ├── requests │ ├── access_limit_spec.rb │ ├── backdate_spec.rb │ ├── contact_embed_spec.rb │ ├── content_spec.rb │ ├── documents_spec.rb │ ├── editions_spec.rb │ ├── errors_spec.rb │ ├── featured_attachments_spec.rb │ ├── file_attachments_spec.rb │ ├── history_mode_spec.rb │ ├── images_spec.rb │ ├── lead_image_spec.rb │ ├── new_document_spec.rb │ ├── preview_spec.rb │ ├── publish_spec.rb │ ├── review_spec.rb │ ├── schedule_proposal_spec.rb │ ├── schedule_spec.rb │ ├── tags_spec.rb │ ├── topics_spec.rb │ ├── unwithdraw_spec.rb │ ├── video_embed_spec.rb │ ├── whitehall_migration_spec.rb │ └── withdraw_spec.rb ├── services │ ├── assign_edition_status_service_spec.rb │ ├── create_document_service_spec.rb │ ├── create_file_attachment_blob_service_spec.rb │ ├── create_image_blob_service │ │ └── centre_crop_spec.rb │ ├── create_image_blob_service_spec.rb │ ├── create_next_edition_service_spec.rb │ ├── delete_draft_assets_service_spec.rb │ ├── discard_draft_edition_service_spec.rb │ ├── discard_path_reservations_service_spec.rb │ ├── edit_draft_edition_service_spec.rb │ ├── failsafe_draft_preview_service_spec.rb │ ├── generate_base_path_service_spec.rb │ ├── generate_unique_filename_service_spec.rb │ ├── preview_asset_service │ │ └── payload_spec.rb │ ├── preview_asset_service_spec.rb │ ├── preview_draft_edition_service_spec.rb │ ├── publish_assets_service_spec.rb │ ├── publish_draft_edition_service_spec.rb │ ├── remove_document_service_spec.rb │ ├── resync_document_service_spec.rb │ ├── schedule_publish_service │ │ └── payload_spec.rb │ ├── schedule_publish_service_spec.rb │ └── withdraw_document_service_spec.rb ├── spec_helper.rb ├── support │ ├── accessible_autocomplete_helper.rb │ ├── authentication_helper.rb │ ├── bulk_data_helper.rb │ ├── jasmine-browser.json │ ├── request_examples.rb │ ├── requirements_helper.rb │ ├── schemas │ │ ├── document_type.json │ │ ├── document_type_locale.json │ │ ├── document_type_selection.json │ │ └── document_type_selection_locale.json │ └── topics_helper.rb └── views │ ├── components │ ├── _attachment_meta.html.erb_spec.rb │ └── _page_preview.html.erb_spec.rb │ ├── documents │ ├── history │ │ ├── _content_publisher_entry.html.erb_spec.rb │ │ └── _whitehall_entry.html.erb_spec.rb │ ├── index │ │ ├── _filters.html.erb_spec.rb │ │ └── _results.html.erb_spec.rb │ ├── show.html.erb_spec.rb │ └── show │ │ └── _requirements.html.erb_spec.rb │ ├── featured_attachments │ ├── _featured_attachment.html.erb_spec.rb │ ├── index.html.erb_spec.rb │ └── reorder.html.erb_spec.rb │ ├── file_attachments │ ├── edit.html.erb_spec.rb │ └── replace.html.erb_spec.rb │ ├── images │ └── crop.html.erb_spec.rb │ ├── new_document │ ├── guidance.html.erb_spec.rb │ └── show.html.erb_spec.rb │ └── tags │ └── edit.html.erb_spec.rb ├── tmp └── .keep └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/.github/workflows/rspec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/.gitignore -------------------------------------------------------------------------------- /.govuk_dependabot_merger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/.govuk_dependabot_merger.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.4 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/LICENCE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/components/markdown-editor/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/images/components/markdown-editor/link.svg -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/components/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/components/autocomplete.js -------------------------------------------------------------------------------- /app/assets/javascripts/components/contact-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/components/contact-preview.js -------------------------------------------------------------------------------- /app/assets/javascripts/components/image-cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/components/image-cropper.js -------------------------------------------------------------------------------- /app/assets/javascripts/components/markdown-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/components/markdown-editor.js -------------------------------------------------------------------------------- /app/assets/javascripts/components/toolbar-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/components/toolbar-dropdown.js -------------------------------------------------------------------------------- /app/assets/javascripts/components/url-preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/components/url-preview.js -------------------------------------------------------------------------------- /app/assets/javascripts/modal/modal-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/modal/modal-editor.js -------------------------------------------------------------------------------- /app/assets/javascripts/modal/modal-fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/modal/modal-fetch.js -------------------------------------------------------------------------------- /app/assets/javascripts/modal/modal-workflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/modal/modal-workflow.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/contact-embed-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/modules/contact-embed-modal.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/gtm-topics-listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/modules/gtm-topics-listener.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/inline-image-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/modules/inline-image-modal.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/video-embed-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/modules/video-embed-modal.js -------------------------------------------------------------------------------- /app/assets/javascripts/modules/warn-before-unload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/javascripts/modules/warn-before-unload.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_autocomplete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/components/_autocomplete.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_image-cropper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/components/_image-cropper.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_inset-prompt.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/components/_inset-prompt.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_metadata.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/components/_metadata.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_page-preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/components/_page-preview.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/components/_url-preview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/components/_url-preview.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/core/_link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/core/_link.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/objects/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/objects/_grid.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/objects/_history.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/objects/_history.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/objects/_pane.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/objects/_pane.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/objects/_side.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/objects/_side.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/utilities/_display.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/utilities/_overwrites.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/assets/stylesheets/utilities/_overwrites.scss -------------------------------------------------------------------------------- /app/controllers/access_limit_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/access_limit_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/backdate_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/backdate_controller.rb -------------------------------------------------------------------------------- /app/controllers/contact_embed_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/contact_embed_controller.rb -------------------------------------------------------------------------------- /app/controllers/content_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/content_controller.rb -------------------------------------------------------------------------------- /app/controllers/debug_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/debug_controller.rb -------------------------------------------------------------------------------- /app/controllers/documents_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/documents_controller.rb -------------------------------------------------------------------------------- /app/controllers/editions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/editions_controller.rb -------------------------------------------------------------------------------- /app/controllers/errors_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/errors_controller.rb -------------------------------------------------------------------------------- /app/controllers/featured_attachments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/featured_attachments_controller.rb -------------------------------------------------------------------------------- /app/controllers/file_attachments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/file_attachments_controller.rb -------------------------------------------------------------------------------- /app/controllers/govspeak_preview_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/govspeak_preview_controller.rb -------------------------------------------------------------------------------- /app/controllers/healthcheck_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/healthcheck_controller.rb -------------------------------------------------------------------------------- /app/controllers/history_mode_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/history_mode_controller.rb -------------------------------------------------------------------------------- /app/controllers/images_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/images_controller.rb -------------------------------------------------------------------------------- /app/controllers/internal_notes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/internal_notes_controller.rb -------------------------------------------------------------------------------- /app/controllers/lead_image_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/lead_image_controller.rb -------------------------------------------------------------------------------- /app/controllers/new_document_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/new_document_controller.rb -------------------------------------------------------------------------------- /app/controllers/preview_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/preview_controller.rb -------------------------------------------------------------------------------- /app/controllers/publish_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/publish_controller.rb -------------------------------------------------------------------------------- /app/controllers/publisher_information_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/publisher_information_controller.rb -------------------------------------------------------------------------------- /app/controllers/remove_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/remove_controller.rb -------------------------------------------------------------------------------- /app/controllers/review_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/review_controller.rb -------------------------------------------------------------------------------- /app/controllers/schedule_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/schedule_controller.rb -------------------------------------------------------------------------------- /app/controllers/schedule_proposal_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/schedule_proposal_controller.rb -------------------------------------------------------------------------------- /app/controllers/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/topics_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/topics_controller.rb -------------------------------------------------------------------------------- /app/controllers/unwithdraw_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/unwithdraw_controller.rb -------------------------------------------------------------------------------- /app/controllers/video_embed_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/video_embed_controller.rb -------------------------------------------------------------------------------- /app/controllers/whitehall_migration_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/whitehall_migration_controller.rb -------------------------------------------------------------------------------- /app/controllers/withdraw_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/controllers/withdraw_controller.rb -------------------------------------------------------------------------------- /app/helpers/actions_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/helpers/actions_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/content_data_url_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/helpers/content_data_url_helper.rb -------------------------------------------------------------------------------- /app/helpers/document_type_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/helpers/document_type_helper.rb -------------------------------------------------------------------------------- /app/helpers/edition_url_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/helpers/edition_url_helper.rb -------------------------------------------------------------------------------- /app/helpers/file_attachment_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/helpers/file_attachment_helper.rb -------------------------------------------------------------------------------- /app/helpers/time_options_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/helpers/time_options_helper.rb -------------------------------------------------------------------------------- /app/interactors/access_limit/update_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/access_limit/update_interactor.rb -------------------------------------------------------------------------------- /app/interactors/application_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/application_interactor.rb -------------------------------------------------------------------------------- /app/interactors/backdate/destroy_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/backdate/destroy_interactor.rb -------------------------------------------------------------------------------- /app/interactors/backdate/update_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/backdate/update_interactor.rb -------------------------------------------------------------------------------- /app/interactors/contact_embed/create_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/contact_embed/create_interactor.rb -------------------------------------------------------------------------------- /app/interactors/content/update_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/content/update_interactor.rb -------------------------------------------------------------------------------- /app/interactors/editions/create_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/editions/create_interactor.rb -------------------------------------------------------------------------------- /app/interactors/editions/destroy_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/editions/destroy_interactor.rb -------------------------------------------------------------------------------- /app/interactors/file_attachments/create_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/file_attachments/create_interactor.rb -------------------------------------------------------------------------------- /app/interactors/file_attachments/update_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/file_attachments/update_interactor.rb -------------------------------------------------------------------------------- /app/interactors/history_mode/update_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/history_mode/update_interactor.rb -------------------------------------------------------------------------------- /app/interactors/images/create_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/images/create_interactor.rb -------------------------------------------------------------------------------- /app/interactors/images/destroy_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/images/destroy_interactor.rb -------------------------------------------------------------------------------- /app/interactors/images/update_crop_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/images/update_crop_interactor.rb -------------------------------------------------------------------------------- /app/interactors/images/update_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/images/update_interactor.rb -------------------------------------------------------------------------------- /app/interactors/internal_notes/create_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/internal_notes/create_interactor.rb -------------------------------------------------------------------------------- /app/interactors/lead_image/choose_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/lead_image/choose_interactor.rb -------------------------------------------------------------------------------- /app/interactors/lead_image/remove_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/lead_image/remove_interactor.rb -------------------------------------------------------------------------------- /app/interactors/new_document/select_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/new_document/select_interactor.rb -------------------------------------------------------------------------------- /app/interactors/preview/create_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/preview/create_interactor.rb -------------------------------------------------------------------------------- /app/interactors/publish/confirmation_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/publish/confirmation_interactor.rb -------------------------------------------------------------------------------- /app/interactors/publish/publish_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/publish/publish_interactor.rb -------------------------------------------------------------------------------- /app/interactors/review/approve_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/review/approve_interactor.rb -------------------------------------------------------------------------------- /app/interactors/review/submit_for2i_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/review/submit_for2i_interactor.rb -------------------------------------------------------------------------------- /app/interactors/schedule/create_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/schedule/create_interactor.rb -------------------------------------------------------------------------------- /app/interactors/schedule/destroy_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/schedule/destroy_interactor.rb -------------------------------------------------------------------------------- /app/interactors/schedule/new_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/schedule/new_interactor.rb -------------------------------------------------------------------------------- /app/interactors/schedule/update_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/schedule/update_interactor.rb -------------------------------------------------------------------------------- /app/interactors/tags/update_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/tags/update_interactor.rb -------------------------------------------------------------------------------- /app/interactors/topics/update_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/topics/update_interactor.rb -------------------------------------------------------------------------------- /app/interactors/unwithdraw/unwithdraw_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/unwithdraw/unwithdraw_interactor.rb -------------------------------------------------------------------------------- /app/interactors/video_embed/create_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/video_embed/create_interactor.rb -------------------------------------------------------------------------------- /app/interactors/withdraw/create_interactor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/interactors/withdraw/create_interactor.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/jobs/asset_cleanup_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/jobs/asset_cleanup_job.rb -------------------------------------------------------------------------------- /app/jobs/email_delivery_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/jobs/email_delivery_job.rb -------------------------------------------------------------------------------- /app/jobs/populate_bulk_data_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/jobs/populate_bulk_data_job.rb -------------------------------------------------------------------------------- /app/jobs/resync_document_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/jobs/resync_document_job.rb -------------------------------------------------------------------------------- /app/jobs/scheduled_publishing_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/jobs/scheduled_publishing_job.rb -------------------------------------------------------------------------------- /app/jobs/whitehall_document_import_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/jobs/whitehall_document_import_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/publish_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/mailers/publish_mailer.rb -------------------------------------------------------------------------------- /app/mailers/scheduled_publish_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/mailers/scheduled_publish_mailer.rb -------------------------------------------------------------------------------- /app/models/access_limit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/access_limit.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/initialize_with_hash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/concerns/initialize_with_hash.rb -------------------------------------------------------------------------------- /app/models/content_revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/content_revision.rb -------------------------------------------------------------------------------- /app/models/content_revision/contents_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/content_revision/contents_validator.rb -------------------------------------------------------------------------------- /app/models/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document.rb -------------------------------------------------------------------------------- /app/models/document_topics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document_topics.rb -------------------------------------------------------------------------------- /app/models/document_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document_type.rb -------------------------------------------------------------------------------- /app/models/document_type/body_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document_type/body_field.rb -------------------------------------------------------------------------------- /app/models/document_type/multi_tag_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document_type/multi_tag_field.rb -------------------------------------------------------------------------------- /app/models/document_type/organisations_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document_type/organisations_field.rb -------------------------------------------------------------------------------- /app/models/document_type/role_appointments_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document_type/role_appointments_field.rb -------------------------------------------------------------------------------- /app/models/document_type/summary_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document_type/summary_field.rb -------------------------------------------------------------------------------- /app/models/document_type/title_and_base_path_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document_type/title_and_base_path_field.rb -------------------------------------------------------------------------------- /app/models/document_type/topical_events_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document_type/topical_events_field.rb -------------------------------------------------------------------------------- /app/models/document_type/world_locations_field.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document_type/world_locations_field.rb -------------------------------------------------------------------------------- /app/models/document_type_selection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document_type_selection.rb -------------------------------------------------------------------------------- /app/models/document_type_selection/option.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/document_type_selection/option.rb -------------------------------------------------------------------------------- /app/models/edition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/edition.rb -------------------------------------------------------------------------------- /app/models/file_attachment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/file_attachment.rb -------------------------------------------------------------------------------- /app/models/file_attachment/asset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/file_attachment/asset.rb -------------------------------------------------------------------------------- /app/models/file_attachment/blob_revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/file_attachment/blob_revision.rb -------------------------------------------------------------------------------- /app/models/file_attachment/metadata_revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/file_attachment/metadata_revision.rb -------------------------------------------------------------------------------- /app/models/file_attachment/revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/file_attachment/revision.rb -------------------------------------------------------------------------------- /app/models/government.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/government.rb -------------------------------------------------------------------------------- /app/models/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/image.rb -------------------------------------------------------------------------------- /app/models/image/asset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/image/asset.rb -------------------------------------------------------------------------------- /app/models/image/blob_revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/image/blob_revision.rb -------------------------------------------------------------------------------- /app/models/image/metadata_revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/image/metadata_revision.rb -------------------------------------------------------------------------------- /app/models/image/revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/image/revision.rb -------------------------------------------------------------------------------- /app/models/internal_note.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/internal_note.rb -------------------------------------------------------------------------------- /app/models/metadata_revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/metadata_revision.rb -------------------------------------------------------------------------------- /app/models/removal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/removal.rb -------------------------------------------------------------------------------- /app/models/revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/revision.rb -------------------------------------------------------------------------------- /app/models/scheduling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/scheduling.rb -------------------------------------------------------------------------------- /app/models/status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/status.rb -------------------------------------------------------------------------------- /app/models/tags_revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/tags_revision.rb -------------------------------------------------------------------------------- /app/models/tags_revision/tags_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/tags_revision/tags_validator.rb -------------------------------------------------------------------------------- /app/models/timeline_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/timeline_entry.rb -------------------------------------------------------------------------------- /app/models/timeline_entry/whitehall_imported_entry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/timeline_entry/whitehall_imported_entry.rb -------------------------------------------------------------------------------- /app/models/topic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/topic.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/whitehall_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/whitehall_migration.rb -------------------------------------------------------------------------------- /app/models/whitehall_migration/asset_import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/whitehall_migration/asset_import.rb -------------------------------------------------------------------------------- /app/models/whitehall_migration/document_export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/whitehall_migration/document_export.rb -------------------------------------------------------------------------------- /app/models/whitehall_migration/document_import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/whitehall_migration/document_import.rb -------------------------------------------------------------------------------- /app/models/withdrawal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/models/withdrawal.rb -------------------------------------------------------------------------------- /app/services/assign_edition_status_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/assign_edition_status_service.rb -------------------------------------------------------------------------------- /app/services/create_document_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/create_document_service.rb -------------------------------------------------------------------------------- /app/services/create_file_attachment_blob_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/create_file_attachment_blob_service.rb -------------------------------------------------------------------------------- /app/services/create_image_blob_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/create_image_blob_service.rb -------------------------------------------------------------------------------- /app/services/create_image_blob_service/centre_crop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/create_image_blob_service/centre_crop.rb -------------------------------------------------------------------------------- /app/services/create_next_edition_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/create_next_edition_service.rb -------------------------------------------------------------------------------- /app/services/delete_draft_assets_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/delete_draft_assets_service.rb -------------------------------------------------------------------------------- /app/services/discard_draft_edition_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/discard_draft_edition_service.rb -------------------------------------------------------------------------------- /app/services/discard_path_reservations_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/discard_path_reservations_service.rb -------------------------------------------------------------------------------- /app/services/edit_draft_edition_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/edit_draft_edition_service.rb -------------------------------------------------------------------------------- /app/services/failsafe_draft_preview_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/failsafe_draft_preview_service.rb -------------------------------------------------------------------------------- /app/services/generate_base_path_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/generate_base_path_service.rb -------------------------------------------------------------------------------- /app/services/generate_unique_filename_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/generate_unique_filename_service.rb -------------------------------------------------------------------------------- /app/services/preview_asset_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/preview_asset_service.rb -------------------------------------------------------------------------------- /app/services/preview_asset_service/payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/preview_asset_service/payload.rb -------------------------------------------------------------------------------- /app/services/preview_asset_service/uploaded_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/preview_asset_service/uploaded_file.rb -------------------------------------------------------------------------------- /app/services/preview_draft_edition_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/preview_draft_edition_service.rb -------------------------------------------------------------------------------- /app/services/publish_assets_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/publish_assets_service.rb -------------------------------------------------------------------------------- /app/services/publish_draft_edition_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/publish_draft_edition_service.rb -------------------------------------------------------------------------------- /app/services/remove_document_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/remove_document_service.rb -------------------------------------------------------------------------------- /app/services/rescue_scheduled_publishing_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/rescue_scheduled_publishing_service.rb -------------------------------------------------------------------------------- /app/services/resync_document_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/resync_document_service.rb -------------------------------------------------------------------------------- /app/services/schedule_publish_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/schedule_publish_service.rb -------------------------------------------------------------------------------- /app/services/schedule_publish_service/payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/schedule_publish_service/payload.rb -------------------------------------------------------------------------------- /app/services/withdraw_document_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/services/withdraw_document_service.rb -------------------------------------------------------------------------------- /app/views/access_limit/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/access_limit/edit.html.erb -------------------------------------------------------------------------------- /app/views/access_limit/edit_api_down.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/access_limit/edit_api_down.html.erb -------------------------------------------------------------------------------- /app/views/backdate/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/backdate/edit.html.erb -------------------------------------------------------------------------------- /app/views/components/_attachment_meta.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_attachment_meta.html.erb -------------------------------------------------------------------------------- /app/views/components/_autocomplete.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_autocomplete.html.erb -------------------------------------------------------------------------------- /app/views/components/_contact_preview.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_contact_preview.html.erb -------------------------------------------------------------------------------- /app/views/components/_formatted_text.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_formatted_text.html.erb -------------------------------------------------------------------------------- /app/views/components/_image_cropper.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_image_cropper.html.erb -------------------------------------------------------------------------------- /app/views/components/_image_with_metadata.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_image_with_metadata.html.erb -------------------------------------------------------------------------------- /app/views/components/_input_length_suggester.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_input_length_suggester.html.erb -------------------------------------------------------------------------------- /app/views/components/_inset_prompt.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_inset_prompt.html.erb -------------------------------------------------------------------------------- /app/views/components/_loading_spinner.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_loading_spinner.html.erb -------------------------------------------------------------------------------- /app/views/components/_markdown_editor.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_markdown_editor.html.erb -------------------------------------------------------------------------------- /app/views/components/_markdown_guidance.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_markdown_guidance.html.erb -------------------------------------------------------------------------------- /app/views/components/_media_with_actions.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_media_with_actions.erb -------------------------------------------------------------------------------- /app/views/components/_metadata.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_metadata.html.erb -------------------------------------------------------------------------------- /app/views/components/_multi_section_viewer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_multi_section_viewer.html.erb -------------------------------------------------------------------------------- /app/views/components/_page_preview.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_page_preview.html.erb -------------------------------------------------------------------------------- /app/views/components/_secondary_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_secondary_navigation.html.erb -------------------------------------------------------------------------------- /app/views/components/_side_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_side_navigation.html.erb -------------------------------------------------------------------------------- /app/views/components/_toolbar_dropdown.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_toolbar_dropdown.html.erb -------------------------------------------------------------------------------- /app/views/components/_url_preview.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/_url_preview.html.erb -------------------------------------------------------------------------------- /app/views/components/docs/attachment_meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/attachment_meta.yml -------------------------------------------------------------------------------- /app/views/components/docs/autocomplete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/autocomplete.yml -------------------------------------------------------------------------------- /app/views/components/docs/contact_preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/contact_preview.yml -------------------------------------------------------------------------------- /app/views/components/docs/image_cropper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/image_cropper.yml -------------------------------------------------------------------------------- /app/views/components/docs/image_with_metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/image_with_metadata.yml -------------------------------------------------------------------------------- /app/views/components/docs/input_length_suggester.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/input_length_suggester.yml -------------------------------------------------------------------------------- /app/views/components/docs/inset_prompt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/inset_prompt.yml -------------------------------------------------------------------------------- /app/views/components/docs/loading_spinner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/loading_spinner.yml -------------------------------------------------------------------------------- /app/views/components/docs/markdown_editor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/markdown_editor.yml -------------------------------------------------------------------------------- /app/views/components/docs/media_with_actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/media_with_actions.yml -------------------------------------------------------------------------------- /app/views/components/docs/metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/metadata.yml -------------------------------------------------------------------------------- /app/views/components/docs/multi_section_viewer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/multi_section_viewer.yml -------------------------------------------------------------------------------- /app/views/components/docs/page_preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/page_preview.yml -------------------------------------------------------------------------------- /app/views/components/docs/secondary_navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/secondary_navigation.yml -------------------------------------------------------------------------------- /app/views/components/docs/side_navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/side_navigation.yml -------------------------------------------------------------------------------- /app/views/components/docs/toolbar_dropdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/toolbar_dropdown.yml -------------------------------------------------------------------------------- /app/views/components/docs/url_preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/components/docs/url_preview.yml -------------------------------------------------------------------------------- /app/views/contact_embed/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/contact_embed/new.html.erb -------------------------------------------------------------------------------- /app/views/contact_embed/new_api_down.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/contact_embed/new_api_down.html.erb -------------------------------------------------------------------------------- /app/views/content/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/content/edit.html.erb -------------------------------------------------------------------------------- /app/views/content/edit/_body_field.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/content/edit/_body_field.html.erb -------------------------------------------------------------------------------- /app/views/content/edit/_change_notes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/content/edit/_change_notes.html.erb -------------------------------------------------------------------------------- /app/views/content/edit/_summary_field.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/content/edit/_summary_field.html.erb -------------------------------------------------------------------------------- /app/views/debug/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/debug/index.html.erb -------------------------------------------------------------------------------- /app/views/documents/_secondary_navigation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/_secondary_navigation.html.erb -------------------------------------------------------------------------------- /app/views/documents/access_limited.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/access_limited.html.erb -------------------------------------------------------------------------------- /app/views/documents/forbidden.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/forbidden.html.erb -------------------------------------------------------------------------------- /app/views/documents/history.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/history.html.erb -------------------------------------------------------------------------------- /app/views/documents/history/_whitehall_entry.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/history/_whitehall_entry.html.erb -------------------------------------------------------------------------------- /app/views/documents/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/index.html.erb -------------------------------------------------------------------------------- /app/views/documents/index/_filters.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/index/_filters.html.erb -------------------------------------------------------------------------------- /app/views/documents/index/_results.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/index/_results.html.erb -------------------------------------------------------------------------------- /app/views/documents/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_actions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_actions.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_content_settings.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_content_settings.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_contents.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_contents.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_debug.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_debug.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_document_metadata.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_document_metadata.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_external_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_external_links.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_historical_notice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_historical_notice.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_lead_image.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_lead_image.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_requirements.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_requirements.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_scheduled_notice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_scheduled_notice.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_tags.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_tags.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_topics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_topics.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/_withdrawn_notice.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/documents/show/_withdrawn_notice.html.erb -------------------------------------------------------------------------------- /app/views/documents/show/contents/_summary_field.html.erb: -------------------------------------------------------------------------------- 1 | <%= edition.summary %> 2 | -------------------------------------------------------------------------------- /app/views/documents/show/contents/_title_and_base_path_field.html.erb: -------------------------------------------------------------------------------- 1 | <%= edition.title %> 2 | -------------------------------------------------------------------------------- /app/views/editions/confirm_delete_draft.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/editions/confirm_delete_draft.html.erb -------------------------------------------------------------------------------- /app/views/errors/_error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/errors/_error.html.erb -------------------------------------------------------------------------------- /app/views/errors/bad_request.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/errors/bad_request.html.erb -------------------------------------------------------------------------------- /app/views/errors/forbidden.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/errors/forbidden.html.erb -------------------------------------------------------------------------------- /app/views/errors/internal_server_error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/errors/internal_server_error.html.erb -------------------------------------------------------------------------------- /app/views/errors/local_data_unavailable.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/errors/local_data_unavailable.html.erb -------------------------------------------------------------------------------- /app/views/errors/not_found.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/errors/not_found.html.erb -------------------------------------------------------------------------------- /app/views/errors/unprocessable_entity.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/errors/unprocessable_entity.html.erb -------------------------------------------------------------------------------- /app/views/featured_attachments/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/featured_attachments/index.html.erb -------------------------------------------------------------------------------- /app/views/featured_attachments/reorder.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/featured_attachments/reorder.html.erb -------------------------------------------------------------------------------- /app/views/file_attachments/_file_attachment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/file_attachments/_file_attachment.html.erb -------------------------------------------------------------------------------- /app/views/file_attachments/confirm_delete.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/file_attachments/confirm_delete.html.erb -------------------------------------------------------------------------------- /app/views/file_attachments/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/file_attachments/edit.html.erb -------------------------------------------------------------------------------- /app/views/file_attachments/edit/_act_paper.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/file_attachments/edit/_act_paper.html.erb -------------------------------------------------------------------------------- /app/views/file_attachments/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/file_attachments/index.html.erb -------------------------------------------------------------------------------- /app/views/file_attachments/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/file_attachments/new.html.erb -------------------------------------------------------------------------------- /app/views/file_attachments/preview_pending.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/file_attachments/preview_pending.html.erb -------------------------------------------------------------------------------- /app/views/file_attachments/replace.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/file_attachments/replace.html.erb -------------------------------------------------------------------------------- /app/views/file_attachments/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/file_attachments/show.html.erb -------------------------------------------------------------------------------- /app/views/history_mode/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/history_mode/edit.html.erb -------------------------------------------------------------------------------- /app/views/history_mode/non_managing_editor.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/history_mode/non_managing_editor.html.erb -------------------------------------------------------------------------------- /app/views/images/_image.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/images/_image.html.erb -------------------------------------------------------------------------------- /app/views/images/_lead_image.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/images/_lead_image.html.erb -------------------------------------------------------------------------------- /app/views/images/confirm_delete.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/images/confirm_delete.html.erb -------------------------------------------------------------------------------- /app/views/images/crop.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/images/crop.html.erb -------------------------------------------------------------------------------- /app/views/images/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/images/edit.html.erb -------------------------------------------------------------------------------- /app/views/images/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/images/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_google_tag_manager.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/layouts/_google_tag_manager.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_modal_error.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/layouts/_modal_error.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_phase_banner_elements.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/layouts/_phase_banner_elements.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/modal.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/layouts/modal.html.erb -------------------------------------------------------------------------------- /app/views/new_document/guidance.govspeak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/new_document/guidance.govspeak.md -------------------------------------------------------------------------------- /app/views/new_document/guidance.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/new_document/guidance.html.erb -------------------------------------------------------------------------------- /app/views/new_document/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/new_document/show.html.erb -------------------------------------------------------------------------------- /app/views/preview/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/preview/show.html.erb -------------------------------------------------------------------------------- /app/views/publish/confirmation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/publish/confirmation.html.erb -------------------------------------------------------------------------------- /app/views/publish/published.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/publish/published.html.erb -------------------------------------------------------------------------------- /app/views/publish_mailer/publish_email.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/publish_mailer/publish_email.text.erb -------------------------------------------------------------------------------- /app/views/remove/remove.govspeak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/remove/remove.govspeak.md -------------------------------------------------------------------------------- /app/views/remove/remove.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/remove/remove.html.erb -------------------------------------------------------------------------------- /app/views/schedule/_datetime.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/schedule/_datetime.html.erb -------------------------------------------------------------------------------- /app/views/schedule/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/schedule/edit.html.erb -------------------------------------------------------------------------------- /app/views/schedule/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/schedule/new.html.erb -------------------------------------------------------------------------------- /app/views/schedule/scheduled.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/schedule/scheduled.html.erb -------------------------------------------------------------------------------- /app/views/schedule_proposal/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/schedule_proposal/edit.html.erb -------------------------------------------------------------------------------- /app/views/tags/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/tags/edit.html.erb -------------------------------------------------------------------------------- /app/views/tags/edit/_multi_tag_field.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/tags/edit/_multi_tag_field.html.erb -------------------------------------------------------------------------------- /app/views/tags/edit/_organisations_field.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/tags/edit/_organisations_field.html.erb -------------------------------------------------------------------------------- /app/views/tags/edit/_role_appointments_field.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/tags/edit/_role_appointments_field.html.erb -------------------------------------------------------------------------------- /app/views/tags/edit/_topical_events_field.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/tags/edit/_topical_events_field.html.erb -------------------------------------------------------------------------------- /app/views/tags/edit/_world_locations_field.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/tags/edit/_world_locations_field.html.erb -------------------------------------------------------------------------------- /app/views/tags/edit_api_down.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/tags/edit_api_down.html.erb -------------------------------------------------------------------------------- /app/views/topics/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/topics/edit.html.erb -------------------------------------------------------------------------------- /app/views/topics/edit_api_down.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/topics/edit_api_down.html.erb -------------------------------------------------------------------------------- /app/views/unwithdraw/confirm.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/unwithdraw/confirm.html.erb -------------------------------------------------------------------------------- /app/views/unwithdraw/non_managing_editor.govspeak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/unwithdraw/non_managing_editor.govspeak.md -------------------------------------------------------------------------------- /app/views/unwithdraw/non_managing_editor.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/unwithdraw/non_managing_editor.html.erb -------------------------------------------------------------------------------- /app/views/video_embed/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/video_embed/new.html.erb -------------------------------------------------------------------------------- /app/views/whitehall_migration/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/whitehall_migration/show.html.erb -------------------------------------------------------------------------------- /app/views/withdraw/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/withdraw/new.html.erb -------------------------------------------------------------------------------- /app/views/withdraw/non_managing_editor.govspeak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/withdraw/non_managing_editor.govspeak.md -------------------------------------------------------------------------------- /app/views/withdraw/non_managing_editor.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/app/views/withdraw/non_managing_editor.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/bin/update -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.yml: -------------------------------------------------------------------------------- 1 | --- 2 | :additional_libs_path: 3 | - app/* 4 | -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/document_type_selections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/document_type_selections.yml -------------------------------------------------------------------------------- /config/document_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/document_types.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/bulk_data_rack_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/bulk_data_rack_middleware.rb -------------------------------------------------------------------------------- /config/initializers/byebug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/byebug.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/dartsass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/dartsass.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/govuk_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/govuk_error.rb -------------------------------------------------------------------------------- /config/initializers/govuk_publishing_components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/govuk_publishing_components.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/inline_svg.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/inline_svg.rb -------------------------------------------------------------------------------- /config/initializers/mail_recipient_interceptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/mail_recipient_interceptor.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/prometheus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/prometheus.rb -------------------------------------------------------------------------------- /config/initializers/secrets_to_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/secrets_to_credentials.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/time_formats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/time_formats.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en/access_limit/edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/access_limit/edit.yml -------------------------------------------------------------------------------- /config/locales/en/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/application.yml -------------------------------------------------------------------------------- /config/locales/en/backdate/edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/backdate/edit.yml -------------------------------------------------------------------------------- /config/locales/en/contact_embed/new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/contact_embed/new.yml -------------------------------------------------------------------------------- /config/locales/en/content/edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/content/edit.yml -------------------------------------------------------------------------------- /config/locales/en/document_type_selections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/document_type_selections.yml -------------------------------------------------------------------------------- /config/locales/en/document_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/document_types.yml -------------------------------------------------------------------------------- /config/locales/en/documents.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/documents.yml -------------------------------------------------------------------------------- /config/locales/en/documents/access_limited.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/documents/access_limited.yml -------------------------------------------------------------------------------- /config/locales/en/documents/history.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/documents/history.yml -------------------------------------------------------------------------------- /config/locales/en/documents/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/documents/index.yml -------------------------------------------------------------------------------- /config/locales/en/documents/show.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/documents/show.yml -------------------------------------------------------------------------------- /config/locales/en/editions/confirm_delete_draft.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/editions/confirm_delete_draft.yml -------------------------------------------------------------------------------- /config/locales/en/errors/bad_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/errors/bad_request.yml -------------------------------------------------------------------------------- /config/locales/en/errors/forbidden.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/errors/forbidden.yml -------------------------------------------------------------------------------- /config/locales/en/errors/internal_server_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/errors/internal_server_error.yml -------------------------------------------------------------------------------- /config/locales/en/errors/local_data_unavailable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/errors/local_data_unavailable.yml -------------------------------------------------------------------------------- /config/locales/en/errors/not_found.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/errors/not_found.yml -------------------------------------------------------------------------------- /config/locales/en/errors/unprocessable_entity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/errors/unprocessable_entity.yml -------------------------------------------------------------------------------- /config/locales/en/featured_attachments/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/featured_attachments/index.yml -------------------------------------------------------------------------------- /config/locales/en/featured_attachments/reorder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/featured_attachments/reorder.yml -------------------------------------------------------------------------------- /config/locales/en/file_attachments/confirm_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/file_attachments/confirm_delete.yml -------------------------------------------------------------------------------- /config/locales/en/file_attachments/edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/file_attachments/edit.yml -------------------------------------------------------------------------------- /config/locales/en/file_attachments/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/file_attachments/index.yml -------------------------------------------------------------------------------- /config/locales/en/file_attachments/new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/file_attachments/new.yml -------------------------------------------------------------------------------- /config/locales/en/file_attachments/replace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/file_attachments/replace.yml -------------------------------------------------------------------------------- /config/locales/en/file_attachments/show.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/file_attachments/show.yml -------------------------------------------------------------------------------- /config/locales/en/history_mode/edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/history_mode/edit.yml -------------------------------------------------------------------------------- /config/locales/en/images/confirm_delete.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/images/confirm_delete.yml -------------------------------------------------------------------------------- /config/locales/en/images/crop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/images/crop.yml -------------------------------------------------------------------------------- /config/locales/en/images/edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/images/edit.yml -------------------------------------------------------------------------------- /config/locales/en/images/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/images/index.yml -------------------------------------------------------------------------------- /config/locales/en/new_document/guidance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/new_document/guidance.yml -------------------------------------------------------------------------------- /config/locales/en/preview/show.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/preview/show.yml -------------------------------------------------------------------------------- /config/locales/en/publish/confirmation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/publish/confirmation.yml -------------------------------------------------------------------------------- /config/locales/en/publish/published.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/publish/published.yml -------------------------------------------------------------------------------- /config/locales/en/publish_mailer/publish_email.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/publish_mailer/publish_email.yml -------------------------------------------------------------------------------- /config/locales/en/remove/remove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/remove/remove.yml -------------------------------------------------------------------------------- /config/locales/en/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/requirements.yml -------------------------------------------------------------------------------- /config/locales/en/schedule/edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/schedule/edit.yml -------------------------------------------------------------------------------- /config/locales/en/schedule/new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/schedule/new.yml -------------------------------------------------------------------------------- /config/locales/en/schedule/scheduled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/schedule/scheduled.yml -------------------------------------------------------------------------------- /config/locales/en/schedule_proposal/edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/schedule_proposal/edit.yml -------------------------------------------------------------------------------- /config/locales/en/tags/edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/tags/edit.yml -------------------------------------------------------------------------------- /config/locales/en/topics/edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/topics/edit.yml -------------------------------------------------------------------------------- /config/locales/en/unwithdraw/confirm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/unwithdraw/confirm.yml -------------------------------------------------------------------------------- /config/locales/en/unwithdraw/unwithdraw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/unwithdraw/unwithdraw.yml -------------------------------------------------------------------------------- /config/locales/en/user_facing_states.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/user_facing_states.yml -------------------------------------------------------------------------------- /config/locales/en/video_embed/new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/video_embed/new.yml -------------------------------------------------------------------------------- /config/locales/en/withdraw/withdraw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/locales/en/withdraw/withdraw.yml -------------------------------------------------------------------------------- /config/political_organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/political_organisations.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docs/adr/0001-record-architecture-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0001-record-architecture-decisions.md -------------------------------------------------------------------------------- /docs/adr/0002-use-local-datastore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0002-use-local-datastore.md -------------------------------------------------------------------------------- /docs/adr/0003-initial-domain-modelling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0003-initial-domain-modelling.md -------------------------------------------------------------------------------- /docs/adr/0004-editing-microcopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0004-editing-microcopy.md -------------------------------------------------------------------------------- /docs/adr/0005-avoiding-initialisation-flickers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0005-avoiding-initialisation-flickers.md -------------------------------------------------------------------------------- /docs/adr/0006-tagging-governments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0006-tagging-governments.md -------------------------------------------------------------------------------- /docs/adr/0007-minimal-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0007-minimal-model.md -------------------------------------------------------------------------------- /docs/adr/0008-restricted-deletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0008-restricted-deletion.md -------------------------------------------------------------------------------- /docs/adr/0009-modelling-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0009-modelling-history.md -------------------------------------------------------------------------------- /docs/adr/0009/domain-model-diagram.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0009/domain-model-diagram.plantuml -------------------------------------------------------------------------------- /docs/adr/0009/domain-model-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0009/domain-model-diagram.png -------------------------------------------------------------------------------- /docs/adr/0009/image-revision-diagram.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0009/image-revision-diagram.plantuml -------------------------------------------------------------------------------- /docs/adr/0009/image-revision-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0009/image-revision-diagram.png -------------------------------------------------------------------------------- /docs/adr/0009/main-concepts-diagram.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0009/main-concepts-diagram.plantuml -------------------------------------------------------------------------------- /docs/adr/0009/main-concepts-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0009/main-concepts-diagram.png -------------------------------------------------------------------------------- /docs/adr/0009/revision-diagram.plantuml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0009/revision-diagram.plantuml -------------------------------------------------------------------------------- /docs/adr/0009/revision-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0009/revision-diagram.png -------------------------------------------------------------------------------- /docs/adr/0010-sending-email-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0010-sending-email-notifications.md -------------------------------------------------------------------------------- /docs/adr/0012-file-attachment-rendering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0012-file-attachment-rendering.md -------------------------------------------------------------------------------- /docs/adr/0013-permitted-deletion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0013-permitted-deletion.md -------------------------------------------------------------------------------- /docs/adr/0014-political-and-government-tagging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0014-political-and-government-tagging.md -------------------------------------------------------------------------------- /docs/adr/0015-bulk-data-loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0015-bulk-data-loading.md -------------------------------------------------------------------------------- /docs/adr/0016-publishing-times-and-change-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/adr/0016-publishing-times-and-change-history.md -------------------------------------------------------------------------------- /docs/approach-to-analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/approach-to-analytics.md -------------------------------------------------------------------------------- /docs/edit-change-note-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/edit-change-note-history.md -------------------------------------------------------------------------------- /docs/history-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/history-mode.md -------------------------------------------------------------------------------- /docs/import-from-whitehall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/import-from-whitehall.md -------------------------------------------------------------------------------- /docs/removing-documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/removing-documents.md -------------------------------------------------------------------------------- /docs/scheduled-publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/scheduled-publishing.md -------------------------------------------------------------------------------- /docs/testing-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/testing-strategy.md -------------------------------------------------------------------------------- /docs/user-permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/docs/user-permissions.md -------------------------------------------------------------------------------- /lib/bulk_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/bulk_data.rb -------------------------------------------------------------------------------- /lib/bulk_data/cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/bulk_data/cache.rb -------------------------------------------------------------------------------- /lib/bulk_data/government_repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/bulk_data/government_repository.rb -------------------------------------------------------------------------------- /lib/callable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/callable.rb -------------------------------------------------------------------------------- /lib/contacts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/contacts.rb -------------------------------------------------------------------------------- /lib/date_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/date_parser.rb -------------------------------------------------------------------------------- /lib/datetime_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/datetime_parser.rb -------------------------------------------------------------------------------- /lib/edition_assertions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/edition_assertions.rb -------------------------------------------------------------------------------- /lib/edition_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/edition_filter.rb -------------------------------------------------------------------------------- /lib/edition_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/edition_updater.rb -------------------------------------------------------------------------------- /lib/gds_api/whitehall_export.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/gds_api/whitehall_export.rb -------------------------------------------------------------------------------- /lib/govspeak_document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/govspeak_document.rb -------------------------------------------------------------------------------- /lib/govspeak_document/in_app_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/govspeak_document/in_app_options.rb -------------------------------------------------------------------------------- /lib/govspeak_document/options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/govspeak_document/options.rb -------------------------------------------------------------------------------- /lib/govspeak_document/payload_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/govspeak_document/payload_options.rb -------------------------------------------------------------------------------- /lib/healthcheck/active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/healthcheck/active_storage.rb -------------------------------------------------------------------------------- /lib/healthcheck/government_data_check.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/healthcheck/government_data_check.rb -------------------------------------------------------------------------------- /lib/image_normaliser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/image_normaliser.rb -------------------------------------------------------------------------------- /lib/image_normaliser/temp_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/image_normaliser/temp_image.rb -------------------------------------------------------------------------------- /lib/linkables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/linkables.rb -------------------------------------------------------------------------------- /lib/mail_recipient_interceptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/mail_recipient_interceptor.rb -------------------------------------------------------------------------------- /lib/organisations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/organisations.rb -------------------------------------------------------------------------------- /lib/political_edition_identifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/political_edition_identifier.rb -------------------------------------------------------------------------------- /lib/publishing_api_payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/publishing_api_payload.rb -------------------------------------------------------------------------------- /lib/publishing_api_payload/file_attachment_payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/publishing_api_payload/file_attachment_payload.rb -------------------------------------------------------------------------------- /lib/publishing_api_payload/history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/publishing_api_payload/history.rb -------------------------------------------------------------------------------- /lib/requirements/checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/checker.rb -------------------------------------------------------------------------------- /lib/requirements/checker_issues.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/checker_issues.rb -------------------------------------------------------------------------------- /lib/requirements/form/access_limit_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/form/access_limit_checker.rb -------------------------------------------------------------------------------- /lib/requirements/form/backdate_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/form/backdate_checker.rb -------------------------------------------------------------------------------- /lib/requirements/form/content_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/form/content_checker.rb -------------------------------------------------------------------------------- /lib/requirements/form/image_metadata_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/form/image_metadata_checker.rb -------------------------------------------------------------------------------- /lib/requirements/form/image_upload_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/form/image_upload_checker.rb -------------------------------------------------------------------------------- /lib/requirements/form/publish_time_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/form/publish_time_checker.rb -------------------------------------------------------------------------------- /lib/requirements/form/tags_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/form/tags_checker.rb -------------------------------------------------------------------------------- /lib/requirements/form/video_embed_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/form/video_embed_checker.rb -------------------------------------------------------------------------------- /lib/requirements/form/withdrawal_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/form/withdrawal_checker.rb -------------------------------------------------------------------------------- /lib/requirements/issue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/issue.rb -------------------------------------------------------------------------------- /lib/requirements/preview/content_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/preview/content_checker.rb -------------------------------------------------------------------------------- /lib/requirements/preview/edition_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/preview/edition_checker.rb -------------------------------------------------------------------------------- /lib/requirements/preview/tags_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/preview/tags_checker.rb -------------------------------------------------------------------------------- /lib/requirements/publish/content_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/publish/content_checker.rb -------------------------------------------------------------------------------- /lib/requirements/publish/edition_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/publish/edition_checker.rb -------------------------------------------------------------------------------- /lib/requirements/publish/file_attachments_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/publish/file_attachments_checker.rb -------------------------------------------------------------------------------- /lib/requirements/publish/topic_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/requirements/publish/topic_checker.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/assets.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/assets.rake -------------------------------------------------------------------------------- /lib/tasks/brakeman.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/brakeman.rake -------------------------------------------------------------------------------- /lib/tasks/change_history.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/change_history.rake -------------------------------------------------------------------------------- /lib/tasks/development_permissions.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/development_permissions.rake -------------------------------------------------------------------------------- /lib/tasks/export.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/export.rake -------------------------------------------------------------------------------- /lib/tasks/factorybot.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/factorybot.rake -------------------------------------------------------------------------------- /lib/tasks/i18n_cov.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/i18n_cov.rake -------------------------------------------------------------------------------- /lib/tasks/import.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/import.rake -------------------------------------------------------------------------------- /lib/tasks/jasmine.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/jasmine.rake -------------------------------------------------------------------------------- /lib/tasks/lint.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/lint.rake -------------------------------------------------------------------------------- /lib/tasks/remove.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/remove.rake -------------------------------------------------------------------------------- /lib/tasks/resync.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/resync.rake -------------------------------------------------------------------------------- /lib/tasks/scheduling.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/tasks/scheduling.rake -------------------------------------------------------------------------------- /lib/topic_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/topic_index.rb -------------------------------------------------------------------------------- /lib/versioning/base_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/versioning/base_updater.rb -------------------------------------------------------------------------------- /lib/versioning/file_attachment_revision_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/versioning/file_attachment_revision_updater.rb -------------------------------------------------------------------------------- /lib/versioning/image_revision_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/versioning/image_revision_updater.rb -------------------------------------------------------------------------------- /lib/versioning/revision_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/versioning/revision_updater.rb -------------------------------------------------------------------------------- /lib/versioning/revision_updater/file_attachment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/versioning/revision_updater/file_attachment.rb -------------------------------------------------------------------------------- /lib/versioning/revision_updater/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/versioning/revision_updater/image.rb -------------------------------------------------------------------------------- /lib/versioning/sub_revision_updater.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/versioning/sub_revision_updater.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/abort_import_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/abort_import_error.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/change_history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/change_history.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/clear_linkset_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/clear_linkset_links.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/create_edition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/create_edition.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/create_image_revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/create_image_revision.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/create_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/create_migration.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/create_revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/create_revision.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/edition_history.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/edition_history.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/embed_body_references.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/embed_body_references.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/import.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/integrity_check_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/integrity_check_error.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/integrity_checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/integrity_checker.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/migrate_assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/migrate_assets.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/migrate_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/migrate_state.rb -------------------------------------------------------------------------------- /lib/whitehall_importer/sync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/lib/whitehall_importer/sync.rb -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/package.json -------------------------------------------------------------------------------- /spec/db/scrub_access_limited_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/db/scrub_access_limited_spec.rb -------------------------------------------------------------------------------- /spec/factories/access_limit_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/access_limit_factory.rb -------------------------------------------------------------------------------- /spec/factories/content_revision_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/content_revision_factory.rb -------------------------------------------------------------------------------- /spec/factories/document_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/document_factory.rb -------------------------------------------------------------------------------- /spec/factories/document_type_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/document_type_factory.rb -------------------------------------------------------------------------------- /spec/factories/edition_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/edition_factory.rb -------------------------------------------------------------------------------- /spec/factories/file_attachment_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/file_attachment_factory.rb -------------------------------------------------------------------------------- /spec/factories/file_attachment_revision_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/file_attachment_revision_factory.rb -------------------------------------------------------------------------------- /spec/factories/government_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/government_factory.rb -------------------------------------------------------------------------------- /spec/factories/guidance_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/guidance_factory.rb -------------------------------------------------------------------------------- /spec/factories/image_blob_revision_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/image_blob_revision_factory.rb -------------------------------------------------------------------------------- /spec/factories/image_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/image_factory.rb -------------------------------------------------------------------------------- /spec/factories/image_metadata_revision_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/image_metadata_revision_factory.rb -------------------------------------------------------------------------------- /spec/factories/image_revision_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/image_revision_factory.rb -------------------------------------------------------------------------------- /spec/factories/internal_note_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/internal_note_factory.rb -------------------------------------------------------------------------------- /spec/factories/metadata_revision_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/metadata_revision_factory.rb -------------------------------------------------------------------------------- /spec/factories/removal_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/removal_factory.rb -------------------------------------------------------------------------------- /spec/factories/revision_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/revision_factory.rb -------------------------------------------------------------------------------- /spec/factories/scheduling_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/scheduling_factory.rb -------------------------------------------------------------------------------- /spec/factories/status_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/status_factory.rb -------------------------------------------------------------------------------- /spec/factories/tags_revision_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/tags_revision_factory.rb -------------------------------------------------------------------------------- /spec/factories/timeline_entry_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/timeline_entry_factory.rb -------------------------------------------------------------------------------- /spec/factories/user_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/user_factory.rb -------------------------------------------------------------------------------- /spec/factories/whitehall_export/document_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/whitehall_export/document_factory.rb -------------------------------------------------------------------------------- /spec/factories/whitehall_export/edition_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/whitehall_export/edition_factory.rb -------------------------------------------------------------------------------- /spec/factories/whitehall_export/image_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/whitehall_export/image_factory.rb -------------------------------------------------------------------------------- /spec/factories/whitehall_export/index_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/whitehall_export/index_factory.rb -------------------------------------------------------------------------------- /spec/factories/whitehall_export/user_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/whitehall_export/user_factory.rb -------------------------------------------------------------------------------- /spec/factories/whitehall_migration_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/whitehall_migration_factory.rb -------------------------------------------------------------------------------- /spec/factories/withdrawal_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/factories/withdrawal_factory.rb -------------------------------------------------------------------------------- /spec/features/debug_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/debug_spec.rb -------------------------------------------------------------------------------- /spec/features/editing_content/edit_edition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/editing_content/edit_edition_spec.rb -------------------------------------------------------------------------------- /spec/features/editing_content/url_preview_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/editing_content/url_preview_spec.rb -------------------------------------------------------------------------------- /spec/features/editing_images/delete_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/editing_images/delete_image_spec.rb -------------------------------------------------------------------------------- /spec/features/editing_images/download_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/editing_images/download_image_spec.rb -------------------------------------------------------------------------------- /spec/features/editing_images/edit_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/editing_images/edit_image_spec.rb -------------------------------------------------------------------------------- /spec/features/editing_images/upload_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/editing_images/upload_image_spec.rb -------------------------------------------------------------------------------- /spec/features/editing_tags/edit_tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/editing_tags/edit_tags_spec.rb -------------------------------------------------------------------------------- /spec/features/editing_topics/edit_topics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/editing_topics/edit_topics_spec.rb -------------------------------------------------------------------------------- /spec/features/finding/index_details_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/finding/index_details_spec.rb -------------------------------------------------------------------------------- /spec/features/finding/index_filtering_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/finding/index_filtering_spec.rb -------------------------------------------------------------------------------- /spec/features/finding/index_ordering_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/finding/index_ordering_spec.rb -------------------------------------------------------------------------------- /spec/features/finding/index_pagination_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/finding/index_pagination_spec.rb -------------------------------------------------------------------------------- /spec/features/formats/news_article_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/formats/news_article_spec.rb -------------------------------------------------------------------------------- /spec/features/formats/publication_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/formats/publication_spec.rb -------------------------------------------------------------------------------- /spec/features/history/internal_note_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/history/internal_note_spec.rb -------------------------------------------------------------------------------- /spec/features/history/pagination_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/history/pagination_spec.rb -------------------------------------------------------------------------------- /spec/features/removing/remove_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/removing/remove_spec.rb -------------------------------------------------------------------------------- /spec/features/scheduling/propose_publish_time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/scheduling/propose_publish_time_spec.rb -------------------------------------------------------------------------------- /spec/features/scheduling/scheduled_publishing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/scheduling/scheduled_publishing_spec.rb -------------------------------------------------------------------------------- /spec/features/scheduling/unschedule_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/scheduling/unschedule_spec.rb -------------------------------------------------------------------------------- /spec/features/scheduling/update_publish_time_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/scheduling/update_publish_time_spec.rb -------------------------------------------------------------------------------- /spec/features/withdrawing/edit_withdrawal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/withdrawing/edit_withdrawal_spec.rb -------------------------------------------------------------------------------- /spec/features/withdrawing/unwithdraw_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/withdrawing/unwithdraw_spec.rb -------------------------------------------------------------------------------- /spec/features/withdrawing/withdraw_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/withdrawing/withdraw_spec.rb -------------------------------------------------------------------------------- /spec/features/workflow/create_document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/workflow/create_document_spec.rb -------------------------------------------------------------------------------- /spec/features/workflow/delete_draft_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/workflow/delete_draft_spec.rb -------------------------------------------------------------------------------- /spec/features/workflow/edition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/workflow/edition_spec.rb -------------------------------------------------------------------------------- /spec/features/workflow/preview_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/workflow/preview_spec.rb -------------------------------------------------------------------------------- /spec/features/workflow/publish_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/workflow/publish_spec.rb -------------------------------------------------------------------------------- /spec/features/workflow/publish_without_review_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/workflow/publish_without_review_spec.rb -------------------------------------------------------------------------------- /spec/features/workflow/submit_for_2i_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/features/workflow/submit_for_2i_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/files/1000x1000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/1000x1000.jpg -------------------------------------------------------------------------------- /spec/fixtures/files/1000x1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/1000x1000.png -------------------------------------------------------------------------------- /spec/fixtures/files/100x100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/100x100.jpg -------------------------------------------------------------------------------- /spec/fixtures/files/13kb-1-page-attachment.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/13kb-1-page-attachment.pdf -------------------------------------------------------------------------------- /spec/fixtures/files/640x960-rotated.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/640x960-rotated.jpg -------------------------------------------------------------------------------- /spec/fixtures/files/960x640-rotated.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/960x640-rotated.jpg -------------------------------------------------------------------------------- /spec/fixtures/files/960x640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/960x640.jpg -------------------------------------------------------------------------------- /spec/fixtures/files/Bad $ name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/Bad $ name.png -------------------------------------------------------------------------------- /spec/fixtures/files/animated-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/animated-gif.gif -------------------------------------------------------------------------------- /spec/fixtures/files/bad_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/bad_file.rb -------------------------------------------------------------------------------- /spec/fixtures/files/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/coffee.svg -------------------------------------------------------------------------------- /spec/fixtures/files/no_extension: -------------------------------------------------------------------------------- 1 | File with no extension 2 | -------------------------------------------------------------------------------- /spec/fixtures/files/replacement-text-file-58bytes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/replacement-text-file-58bytes.txt -------------------------------------------------------------------------------- /spec/fixtures/files/text-file-74bytes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/text-file-74bytes.txt -------------------------------------------------------------------------------- /spec/fixtures/files/unsupported_type_in_zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/unsupported_type_in_zip.zip -------------------------------------------------------------------------------- /spec/fixtures/files/valid_zip.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/fixtures/files/valid_zip.zip -------------------------------------------------------------------------------- /spec/helpers/application_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/helpers/application_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/document_type_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/helpers/document_type_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/edition_url_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/helpers/edition_url_helper_spec.rb -------------------------------------------------------------------------------- /spec/interactors/content/update_interactor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/interactors/content/update_interactor_spec.rb -------------------------------------------------------------------------------- /spec/interactors/editions/create_interactor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/interactors/editions/create_interactor_spec.rb -------------------------------------------------------------------------------- /spec/interactors/editions/destroy_interactor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/interactors/editions/destroy_interactor_spec.rb -------------------------------------------------------------------------------- /spec/interactors/images/create_interactor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/interactors/images/create_interactor_spec.rb -------------------------------------------------------------------------------- /spec/interactors/preview/create_interactor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/interactors/preview/create_interactor_spec.rb -------------------------------------------------------------------------------- /spec/interactors/schedule/create_interactor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/interactors/schedule/create_interactor_spec.rb -------------------------------------------------------------------------------- /spec/interactors/schedule/destroy_interactor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/interactors/schedule/destroy_interactor_spec.rb -------------------------------------------------------------------------------- /spec/interactors/schedule/update_interactor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/interactors/schedule/update_interactor_spec.rb -------------------------------------------------------------------------------- /spec/javascripts/components/contact-preview-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/components/contact-preview-spec.js -------------------------------------------------------------------------------- /spec/javascripts/components/markdown-editor-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/components/markdown-editor-spec.js -------------------------------------------------------------------------------- /spec/javascripts/components/toolbar-dropdown-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/components/toolbar-dropdown-spec.js -------------------------------------------------------------------------------- /spec/javascripts/components/url-preview-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/components/url-preview-spec.js -------------------------------------------------------------------------------- /spec/javascripts/helpers/fetch-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/helpers/fetch-mock.js -------------------------------------------------------------------------------- /spec/javascripts/helpers/gtm-mock.js: -------------------------------------------------------------------------------- 1 | beforeEach(function () { 2 | window.dataLayer = [] 3 | }) 4 | -------------------------------------------------------------------------------- /spec/javascripts/helpers/markdown-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/helpers/markdown-editor.js -------------------------------------------------------------------------------- /spec/javascripts/helpers/modal-dialogue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/helpers/modal-dialogue.js -------------------------------------------------------------------------------- /spec/javascripts/modal/modal-editor-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/modal/modal-editor-spec.js -------------------------------------------------------------------------------- /spec/javascripts/modal/modal-fetch-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/modal/modal-fetch-spec.js -------------------------------------------------------------------------------- /spec/javascripts/modal/modal-workflow-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/modal/modal-workflow-spec.js -------------------------------------------------------------------------------- /spec/javascripts/modules/contact-embed-modal-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/modules/contact-embed-modal-spec.js -------------------------------------------------------------------------------- /spec/javascripts/modules/gtm-reorder-listener-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/modules/gtm-reorder-listener-spec.js -------------------------------------------------------------------------------- /spec/javascripts/modules/gtm-topic-listener-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/modules/gtm-topic-listener-spec.js -------------------------------------------------------------------------------- /spec/javascripts/modules/inline-image-modal-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/modules/inline-image-modal-spec.js -------------------------------------------------------------------------------- /spec/javascripts/modules/video-embed-modal-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/modules/video-embed-modal-spec.js -------------------------------------------------------------------------------- /spec/javascripts/modules/warn-before-unload-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/javascripts/modules/warn-before-unload-spec.js -------------------------------------------------------------------------------- /spec/jobs/application_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/jobs/application_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/asset_cleanup_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/jobs/asset_cleanup_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/populate_bulk_data_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/jobs/populate_bulk_data_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/resync_document_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/jobs/resync_document_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/scheduled_publishing_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/jobs/scheduled_publishing_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/whitehall_document_import_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/jobs/whitehall_document_import_job_spec.rb -------------------------------------------------------------------------------- /spec/lib/bulk_data/cache_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/bulk_data/cache_spec.rb -------------------------------------------------------------------------------- /spec/lib/bulk_data/government_repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/bulk_data/government_repository_spec.rb -------------------------------------------------------------------------------- /spec/lib/contacts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/contacts_spec.rb -------------------------------------------------------------------------------- /spec/lib/date_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/date_parser_spec.rb -------------------------------------------------------------------------------- /spec/lib/datetime_parser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/datetime_parser_spec.rb -------------------------------------------------------------------------------- /spec/lib/edition_assertions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/edition_assertions_spec.rb -------------------------------------------------------------------------------- /spec/lib/edition_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/edition_filter_spec.rb -------------------------------------------------------------------------------- /spec/lib/edition_updater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/edition_updater_spec.rb -------------------------------------------------------------------------------- /spec/lib/gds_api/whitehall_export_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/gds_api/whitehall_export_spec.rb -------------------------------------------------------------------------------- /spec/lib/govspeak_document/in_app_options_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/govspeak_document/in_app_options_spec.rb -------------------------------------------------------------------------------- /spec/lib/govspeak_document/options_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/govspeak_document/options_spec.rb -------------------------------------------------------------------------------- /spec/lib/govspeak_document/payload_options_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/govspeak_document/payload_options_spec.rb -------------------------------------------------------------------------------- /spec/lib/healthcheck/active_storage_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/healthcheck/active_storage_spec.rb -------------------------------------------------------------------------------- /spec/lib/healthcheck/government_data_check_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/healthcheck/government_data_check_spec.rb -------------------------------------------------------------------------------- /spec/lib/image_normaliser/temp_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/image_normaliser/temp_image_spec.rb -------------------------------------------------------------------------------- /spec/lib/image_normaliser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/image_normaliser_spec.rb -------------------------------------------------------------------------------- /spec/lib/linkables_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/linkables_spec.rb -------------------------------------------------------------------------------- /spec/lib/mail_recipient_interceptor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/mail_recipient_interceptor_spec.rb -------------------------------------------------------------------------------- /spec/lib/organisations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/organisations_spec.rb -------------------------------------------------------------------------------- /spec/lib/political_edition_identifier_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/political_edition_identifier_spec.rb -------------------------------------------------------------------------------- /spec/lib/publishing_api_payload/history_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/publishing_api_payload/history_spec.rb -------------------------------------------------------------------------------- /spec/lib/publishing_api_payload_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/publishing_api_payload_spec.rb -------------------------------------------------------------------------------- /spec/lib/requirements/form/backdate_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/requirements/form/backdate_checker_spec.rb -------------------------------------------------------------------------------- /spec/lib/requirements/form/tags_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/requirements/form/tags_checker_spec.rb -------------------------------------------------------------------------------- /spec/lib/requirements/form/withdrawal_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/requirements/form/withdrawal_checker_spec.rb -------------------------------------------------------------------------------- /spec/lib/requirements/preview/content_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/requirements/preview/content_checker_spec.rb -------------------------------------------------------------------------------- /spec/lib/requirements/preview/edition_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/requirements/preview/edition_checker_spec.rb -------------------------------------------------------------------------------- /spec/lib/requirements/preview/tags_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/requirements/preview/tags_checker_spec.rb -------------------------------------------------------------------------------- /spec/lib/requirements/publish/content_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/requirements/publish/content_checker_spec.rb -------------------------------------------------------------------------------- /spec/lib/requirements/publish/edition_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/requirements/publish/edition_checker_spec.rb -------------------------------------------------------------------------------- /spec/lib/requirements/publish/topic_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/requirements/publish/topic_checker_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/change_history_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/tasks/change_history_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/export_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/tasks/export_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/import_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/tasks/import_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/remove_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/tasks/remove_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/resync_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/tasks/resync_spec.rb -------------------------------------------------------------------------------- /spec/lib/tasks/scheduling_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/tasks/scheduling_spec.rb -------------------------------------------------------------------------------- /spec/lib/versioning/image_revision_updater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/versioning/image_revision_updater_spec.rb -------------------------------------------------------------------------------- /spec/lib/versioning/revision_updater/image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/versioning/revision_updater/image_spec.rb -------------------------------------------------------------------------------- /spec/lib/versioning/revision_updater_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/versioning/revision_updater_spec.rb -------------------------------------------------------------------------------- /spec/lib/whitehall_importer/change_history_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/whitehall_importer/change_history_spec.rb -------------------------------------------------------------------------------- /spec/lib/whitehall_importer/create_edition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/whitehall_importer/create_edition_spec.rb -------------------------------------------------------------------------------- /spec/lib/whitehall_importer/create_migration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/whitehall_importer/create_migration_spec.rb -------------------------------------------------------------------------------- /spec/lib/whitehall_importer/create_revision_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/whitehall_importer/create_revision_spec.rb -------------------------------------------------------------------------------- /spec/lib/whitehall_importer/edition_history_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/whitehall_importer/edition_history_spec.rb -------------------------------------------------------------------------------- /spec/lib/whitehall_importer/import_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/whitehall_importer/import_spec.rb -------------------------------------------------------------------------------- /spec/lib/whitehall_importer/integrity_checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/whitehall_importer/integrity_checker_spec.rb -------------------------------------------------------------------------------- /spec/lib/whitehall_importer/migrate_assets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/whitehall_importer/migrate_assets_spec.rb -------------------------------------------------------------------------------- /spec/lib/whitehall_importer/migrate_state_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/whitehall_importer/migrate_state_spec.rb -------------------------------------------------------------------------------- /spec/lib/whitehall_importer/sync_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/lib/whitehall_importer/sync_spec.rb -------------------------------------------------------------------------------- /spec/mailers/publish_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/mailers/publish_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/scheduled_publish_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/mailers/scheduled_publish_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/document_spec.rb -------------------------------------------------------------------------------- /spec/models/document_topics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/document_topics_spec.rb -------------------------------------------------------------------------------- /spec/models/document_type/body_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/document_type/body_field_spec.rb -------------------------------------------------------------------------------- /spec/models/document_type/multi_tag_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/document_type/multi_tag_field_spec.rb -------------------------------------------------------------------------------- /spec/models/document_type/organisations_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/document_type/organisations_field_spec.rb -------------------------------------------------------------------------------- /spec/models/document_type/summary_field_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/document_type/summary_field_spec.rb -------------------------------------------------------------------------------- /spec/models/document_type_selection/option_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/document_type_selection/option_spec.rb -------------------------------------------------------------------------------- /spec/models/document_type_selection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/document_type_selection_spec.rb -------------------------------------------------------------------------------- /spec/models/document_type_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/document_type_spec.rb -------------------------------------------------------------------------------- /spec/models/edition_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/edition_spec.rb -------------------------------------------------------------------------------- /spec/models/file_attachment/blob_revision_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/file_attachment/blob_revision_spec.rb -------------------------------------------------------------------------------- /spec/models/government_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/government_spec.rb -------------------------------------------------------------------------------- /spec/models/image/blob_revision_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/image/blob_revision_spec.rb -------------------------------------------------------------------------------- /spec/models/revision_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/revision_spec.rb -------------------------------------------------------------------------------- /spec/models/status_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/status_spec.rb -------------------------------------------------------------------------------- /spec/models/tags_revision/tags_validator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/tags_revision/tags_validator_spec.rb -------------------------------------------------------------------------------- /spec/models/timeline_entry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/timeline_entry_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/whitehall_migration/asset_import_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/whitehall_migration/asset_import_spec.rb -------------------------------------------------------------------------------- /spec/models/whitehall_migration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/models/whitehall_migration_spec.rb -------------------------------------------------------------------------------- /spec/requests/access_limit_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/access_limit_spec.rb -------------------------------------------------------------------------------- /spec/requests/backdate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/backdate_spec.rb -------------------------------------------------------------------------------- /spec/requests/contact_embed_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/contact_embed_spec.rb -------------------------------------------------------------------------------- /spec/requests/content_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/content_spec.rb -------------------------------------------------------------------------------- /spec/requests/documents_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/documents_spec.rb -------------------------------------------------------------------------------- /spec/requests/editions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/editions_spec.rb -------------------------------------------------------------------------------- /spec/requests/errors_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/errors_spec.rb -------------------------------------------------------------------------------- /spec/requests/featured_attachments_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/featured_attachments_spec.rb -------------------------------------------------------------------------------- /spec/requests/file_attachments_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/file_attachments_spec.rb -------------------------------------------------------------------------------- /spec/requests/history_mode_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/history_mode_spec.rb -------------------------------------------------------------------------------- /spec/requests/images_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/images_spec.rb -------------------------------------------------------------------------------- /spec/requests/lead_image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/lead_image_spec.rb -------------------------------------------------------------------------------- /spec/requests/new_document_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/new_document_spec.rb -------------------------------------------------------------------------------- /spec/requests/preview_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/preview_spec.rb -------------------------------------------------------------------------------- /spec/requests/publish_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/publish_spec.rb -------------------------------------------------------------------------------- /spec/requests/review_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/review_spec.rb -------------------------------------------------------------------------------- /spec/requests/schedule_proposal_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/schedule_proposal_spec.rb -------------------------------------------------------------------------------- /spec/requests/schedule_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/schedule_spec.rb -------------------------------------------------------------------------------- /spec/requests/tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/tags_spec.rb -------------------------------------------------------------------------------- /spec/requests/topics_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/topics_spec.rb -------------------------------------------------------------------------------- /spec/requests/unwithdraw_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/unwithdraw_spec.rb -------------------------------------------------------------------------------- /spec/requests/video_embed_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/video_embed_spec.rb -------------------------------------------------------------------------------- /spec/requests/whitehall_migration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/whitehall_migration_spec.rb -------------------------------------------------------------------------------- /spec/requests/withdraw_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/requests/withdraw_spec.rb -------------------------------------------------------------------------------- /spec/services/assign_edition_status_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/assign_edition_status_service_spec.rb -------------------------------------------------------------------------------- /spec/services/create_document_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/create_document_service_spec.rb -------------------------------------------------------------------------------- /spec/services/create_image_blob_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/create_image_blob_service_spec.rb -------------------------------------------------------------------------------- /spec/services/create_next_edition_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/create_next_edition_service_spec.rb -------------------------------------------------------------------------------- /spec/services/delete_draft_assets_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/delete_draft_assets_service_spec.rb -------------------------------------------------------------------------------- /spec/services/discard_draft_edition_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/discard_draft_edition_service_spec.rb -------------------------------------------------------------------------------- /spec/services/edit_draft_edition_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/edit_draft_edition_service_spec.rb -------------------------------------------------------------------------------- /spec/services/failsafe_draft_preview_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/failsafe_draft_preview_service_spec.rb -------------------------------------------------------------------------------- /spec/services/generate_base_path_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/generate_base_path_service_spec.rb -------------------------------------------------------------------------------- /spec/services/preview_asset_service/payload_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/preview_asset_service/payload_spec.rb -------------------------------------------------------------------------------- /spec/services/preview_asset_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/preview_asset_service_spec.rb -------------------------------------------------------------------------------- /spec/services/preview_draft_edition_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/preview_draft_edition_service_spec.rb -------------------------------------------------------------------------------- /spec/services/publish_assets_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/publish_assets_service_spec.rb -------------------------------------------------------------------------------- /spec/services/publish_draft_edition_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/publish_draft_edition_service_spec.rb -------------------------------------------------------------------------------- /spec/services/remove_document_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/remove_document_service_spec.rb -------------------------------------------------------------------------------- /spec/services/resync_document_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/resync_document_service_spec.rb -------------------------------------------------------------------------------- /spec/services/schedule_publish_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/schedule_publish_service_spec.rb -------------------------------------------------------------------------------- /spec/services/withdraw_document_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/services/withdraw_document_service_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/accessible_autocomplete_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/support/accessible_autocomplete_helper.rb -------------------------------------------------------------------------------- /spec/support/authentication_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/support/authentication_helper.rb -------------------------------------------------------------------------------- /spec/support/bulk_data_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/support/bulk_data_helper.rb -------------------------------------------------------------------------------- /spec/support/jasmine-browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/support/jasmine-browser.json -------------------------------------------------------------------------------- /spec/support/request_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/support/request_examples.rb -------------------------------------------------------------------------------- /spec/support/requirements_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/support/requirements_helper.rb -------------------------------------------------------------------------------- /spec/support/schemas/document_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/support/schemas/document_type.json -------------------------------------------------------------------------------- /spec/support/schemas/document_type_locale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/support/schemas/document_type_locale.json -------------------------------------------------------------------------------- /spec/support/schemas/document_type_selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/support/schemas/document_type_selection.json -------------------------------------------------------------------------------- /spec/support/topics_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/support/topics_helper.rb -------------------------------------------------------------------------------- /spec/views/components/_page_preview.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/views/components/_page_preview.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/documents/index/_filters.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/views/documents/index/_filters.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/documents/index/_results.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/views/documents/index/_results.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/documents/show.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/views/documents/show.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/file_attachments/edit.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/views/file_attachments/edit.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/images/crop.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/views/images/crop.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/new_document/guidance.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/views/new_document/guidance.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/new_document/show.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/views/new_document/show.html.erb_spec.rb -------------------------------------------------------------------------------- /spec/views/tags/edit.html.erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/spec/views/tags/edit.html.erb_spec.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/content-publisher/HEAD/yarn.lock --------------------------------------------------------------------------------