├── .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 ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── javascripts │ │ ├── application.js │ │ └── test-dependencies.js │ └── stylesheets │ │ ├── application.scss │ │ └── views │ │ └── _completed_transaction.scss ├── controllers │ ├── application_controller.rb │ ├── assisted_digital_feedback_controller.rb │ ├── concerns │ │ └── throttling_manager.rb │ ├── contact │ │ ├── govuk │ │ │ ├── content_improvement_controller.rb │ │ │ ├── page_improvements_controller.rb │ │ │ └── problem_reports_controller.rb │ │ ├── govuk_app │ │ │ ├── problem_reports_controller.rb │ │ │ └── suggestions_controller.rb │ │ ├── govuk_app_controller.rb │ │ └── govuk_controller.rb │ ├── contact_controller.rb │ └── service_feedback_controller.rb ├── helpers │ ├── application_helper.rb │ ├── locale_helper.rb │ └── service_feedback_helper.rb ├── lib │ ├── app_problem_report_ticket_creator.rb │ ├── app_suggestion_ticket_creator.rb │ ├── format_routing_constraint.rb │ ├── google_credentials.rb │ ├── google_spreadsheet_store.rb │ ├── spam_error.rb │ ├── ticket_creator.rb │ ├── url_normaliser.rb │ └── web_support_ticket_creator.rb ├── mailers │ └── .gitkeep ├── models │ ├── app_problem_report_ticket.rb │ ├── app_suggestion_ticket.rb │ ├── app_ticket.rb │ ├── assisted_digital_feedback.rb │ ├── contact_links.rb │ ├── contact_ticket.rb │ ├── email_survey.rb │ ├── multi_ticket.rb │ ├── reply_validation.rb │ ├── report_a_problem_ticket.rb │ ├── service_feedback.rb │ └── ticket.rb ├── presenters │ └── content_item_presenter.rb └── views │ ├── assisted_digital_feedback │ ├── _assistance_received.html.erb │ ├── _assistance_received_other.html.erb │ ├── _assisted_digital_satisfaction_survey.html.erb │ └── new.html.erb │ ├── contact │ ├── govuk │ │ ├── anonymous_feedback_thankyou.html.erb │ │ ├── named_contact_thankyou.html.erb │ │ ├── new.html.erb │ │ └── problem_reports │ │ │ └── thankyou.html.erb │ ├── govuk_app │ │ ├── confirmation.html.erb │ │ ├── new.html.erb │ │ ├── problem_reports │ │ │ └── new.html.erb │ │ └── suggestions │ │ │ └── new.html.erb │ └── index.html.erb │ ├── layouts │ ├── application.html.erb │ └── service_feedback.html.erb │ ├── service_feedback │ ├── _standard_satisfaction_survey.html.erb │ └── new.html.erb │ └── shared │ ├── _completed_transaction_feedback.html.erb │ ├── _error_messages.html.erb │ ├── _error_summary.html.erb │ ├── _promo.html.erb │ ├── _publication_metadata.html.erb │ ├── _service_improvement_comment.html.erb │ └── _spam_honeypot.html.erb ├── bin ├── brakeman ├── dev ├── rails ├── rake ├── rubocop ├── setup └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.ignore ├── contact-links.csv ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── assisted_digital_feedback.rb │ ├── backtrace_silencers.rb │ ├── contact_links.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── dartsass.rb │ ├── filter_parameter_logging.rb │ ├── gds_api.rb │ ├── generator_defaults.rb │ ├── govuk_publishing_components.rb │ ├── govuk_web_banners.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── permissions_policy.rb │ ├── problem_report_spam_matchers.rb │ ├── prometheus.rb │ ├── rack_attack.rb │ ├── session_store.rb │ ├── support_app.rb │ └── wrap_parameters.rb ├── locales │ ├── cy.yml │ └── en.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── unicorn.rb ├── db └── seeds.rb ├── docs ├── assisted_digital_feedback.md └── notify_template_parameters.md ├── lib ├── assets │ └── .gitkeep └── tasks │ ├── .gitkeep │ ├── jasmine.rake │ └── lint.rake ├── log └── .gitkeep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── script └── rails ├── spec ├── controllers │ ├── concerns │ │ └── throttling_manager_spec.rb │ └── contact │ │ ├── govuk │ │ └── problem_reports_controller_spec.rb │ │ └── govuk_controller_spec.rb ├── helpers │ └── service_feedback_helper_spec.rb ├── javascripts │ ├── helpers │ │ └── .gitkeep │ └── spec │ │ └── feedback.spec.js ├── lib │ ├── app_problem_report_ticket_creator_spec.rb │ ├── app_suggestion_ticket_creator_spec.rb │ ├── format_routing_constraint_spec.rb │ ├── google_spreadsheet_store_spec.rb │ ├── ticket_creator_spec.rb │ └── web_support_ticket_creator_spec.rb ├── models │ ├── app_problem_report_ticket_spec.rb │ ├── app_suggestion_ticket_spec.rb │ ├── app_ticket_spec.rb │ ├── assisted_digital_feedback_spec.rb │ ├── contact_ticket_spec.rb │ ├── email_survey_spec.rb │ ├── multi_ticket_spec.rb │ ├── reply_validation_spec.rb │ ├── report_a_problem_ticket_spec.rb │ ├── service_feedback_spec.rb │ └── ticket_spec.rb ├── presenters │ └── content_item_presenter_spec.rb ├── rails_helper.rb ├── requests │ ├── assisted_digital_spec.rb │ ├── contact_spec.rb │ ├── content_improvement_spec.rb │ ├── govuk_app │ │ ├── problem_reports_spec.rb │ │ └── suggestions_spec.rb │ ├── govuk_app_spec.rb │ ├── interstitial_page_spec.rb │ ├── page_improvements_spec.rb │ ├── rate_limiting_spec.rb │ ├── root_redirects_spec.rb │ └── service_feedback_spec.rb ├── spec_helper.rb ├── support │ ├── capybara.rb │ ├── email_survey_helpers.rb │ ├── govuk_contact.rb │ ├── govuk_test.rb │ ├── jasmine-browser.json │ ├── path_helpers.rb │ ├── service_feedback.rb │ ├── validator_helper.rb │ └── webmock.rb └── system │ ├── app_problem_report_spec.rb │ └── app_suggestion_spec.rb └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/copy-pr-template-to-dependabot-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/.github/workflows/copy-pr-template-to-dependabot-prs.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/.github/workflows/rspec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/.gitignore -------------------------------------------------------------------------------- /.govuk_dependabot_merger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/.govuk_dependabot_merger.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.1 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/test-dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/assets/javascripts/test-dependencies.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/views/_completed_transaction.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/assets/stylesheets/views/_completed_transaction.scss -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/assisted_digital_feedback_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/controllers/assisted_digital_feedback_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/throttling_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/controllers/concerns/throttling_manager.rb -------------------------------------------------------------------------------- /app/controllers/contact/govuk/content_improvement_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/controllers/contact/govuk/content_improvement_controller.rb -------------------------------------------------------------------------------- /app/controllers/contact/govuk/page_improvements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/controllers/contact/govuk/page_improvements_controller.rb -------------------------------------------------------------------------------- /app/controllers/contact/govuk/problem_reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/controllers/contact/govuk/problem_reports_controller.rb -------------------------------------------------------------------------------- /app/controllers/contact/govuk_app/problem_reports_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/controllers/contact/govuk_app/problem_reports_controller.rb -------------------------------------------------------------------------------- /app/controllers/contact/govuk_app/suggestions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/controllers/contact/govuk_app/suggestions_controller.rb -------------------------------------------------------------------------------- /app/controllers/contact/govuk_app_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/controllers/contact/govuk_app_controller.rb -------------------------------------------------------------------------------- /app/controllers/contact/govuk_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/controllers/contact/govuk_controller.rb -------------------------------------------------------------------------------- /app/controllers/contact_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/controllers/contact_controller.rb -------------------------------------------------------------------------------- /app/controllers/service_feedback_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/controllers/service_feedback_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/locale_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/helpers/locale_helper.rb -------------------------------------------------------------------------------- /app/helpers/service_feedback_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/helpers/service_feedback_helper.rb -------------------------------------------------------------------------------- /app/lib/app_problem_report_ticket_creator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/lib/app_problem_report_ticket_creator.rb -------------------------------------------------------------------------------- /app/lib/app_suggestion_ticket_creator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/lib/app_suggestion_ticket_creator.rb -------------------------------------------------------------------------------- /app/lib/format_routing_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/lib/format_routing_constraint.rb -------------------------------------------------------------------------------- /app/lib/google_credentials.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/lib/google_credentials.rb -------------------------------------------------------------------------------- /app/lib/google_spreadsheet_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/lib/google_spreadsheet_store.rb -------------------------------------------------------------------------------- /app/lib/spam_error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/lib/spam_error.rb -------------------------------------------------------------------------------- /app/lib/ticket_creator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/lib/ticket_creator.rb -------------------------------------------------------------------------------- /app/lib/url_normaliser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/lib/url_normaliser.rb -------------------------------------------------------------------------------- /app/lib/web_support_ticket_creator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/lib/web_support_ticket_creator.rb -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/app_problem_report_ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/models/app_problem_report_ticket.rb -------------------------------------------------------------------------------- /app/models/app_suggestion_ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/models/app_suggestion_ticket.rb -------------------------------------------------------------------------------- /app/models/app_ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/models/app_ticket.rb -------------------------------------------------------------------------------- /app/models/assisted_digital_feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/models/assisted_digital_feedback.rb -------------------------------------------------------------------------------- /app/models/contact_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/models/contact_links.rb -------------------------------------------------------------------------------- /app/models/contact_ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/models/contact_ticket.rb -------------------------------------------------------------------------------- /app/models/email_survey.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/models/email_survey.rb -------------------------------------------------------------------------------- /app/models/multi_ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/models/multi_ticket.rb -------------------------------------------------------------------------------- /app/models/reply_validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/models/reply_validation.rb -------------------------------------------------------------------------------- /app/models/report_a_problem_ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/models/report_a_problem_ticket.rb -------------------------------------------------------------------------------- /app/models/service_feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/models/service_feedback.rb -------------------------------------------------------------------------------- /app/models/ticket.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/models/ticket.rb -------------------------------------------------------------------------------- /app/presenters/content_item_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/presenters/content_item_presenter.rb -------------------------------------------------------------------------------- /app/views/assisted_digital_feedback/_assistance_received.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/assisted_digital_feedback/_assistance_received.html.erb -------------------------------------------------------------------------------- /app/views/assisted_digital_feedback/_assistance_received_other.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/assisted_digital_feedback/_assistance_received_other.html.erb -------------------------------------------------------------------------------- /app/views/assisted_digital_feedback/_assisted_digital_satisfaction_survey.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/assisted_digital_feedback/_assisted_digital_satisfaction_survey.html.erb -------------------------------------------------------------------------------- /app/views/assisted_digital_feedback/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/assisted_digital_feedback/new.html.erb -------------------------------------------------------------------------------- /app/views/contact/govuk/anonymous_feedback_thankyou.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/contact/govuk/anonymous_feedback_thankyou.html.erb -------------------------------------------------------------------------------- /app/views/contact/govuk/named_contact_thankyou.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/contact/govuk/named_contact_thankyou.html.erb -------------------------------------------------------------------------------- /app/views/contact/govuk/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/contact/govuk/new.html.erb -------------------------------------------------------------------------------- /app/views/contact/govuk/problem_reports/thankyou.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/contact/govuk/problem_reports/thankyou.html.erb -------------------------------------------------------------------------------- /app/views/contact/govuk_app/confirmation.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/contact/govuk_app/confirmation.html.erb -------------------------------------------------------------------------------- /app/views/contact/govuk_app/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/contact/govuk_app/new.html.erb -------------------------------------------------------------------------------- /app/views/contact/govuk_app/problem_reports/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/contact/govuk_app/problem_reports/new.html.erb -------------------------------------------------------------------------------- /app/views/contact/govuk_app/suggestions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/contact/govuk_app/suggestions/new.html.erb -------------------------------------------------------------------------------- /app/views/contact/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/contact/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/service_feedback.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/layouts/service_feedback.html.erb -------------------------------------------------------------------------------- /app/views/service_feedback/_standard_satisfaction_survey.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/service_feedback/_standard_satisfaction_survey.html.erb -------------------------------------------------------------------------------- /app/views/service_feedback/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/service_feedback/new.html.erb -------------------------------------------------------------------------------- /app/views/shared/_completed_transaction_feedback.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/shared/_completed_transaction_feedback.html.erb -------------------------------------------------------------------------------- /app/views/shared/_error_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/shared/_error_messages.html.erb -------------------------------------------------------------------------------- /app/views/shared/_error_summary.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/shared/_error_summary.html.erb -------------------------------------------------------------------------------- /app/views/shared/_promo.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/shared/_promo.html.erb -------------------------------------------------------------------------------- /app/views/shared/_publication_metadata.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/shared/_publication_metadata.html.erb -------------------------------------------------------------------------------- /app/views/shared/_service_improvement_comment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/shared/_service_improvement_comment.html.erb -------------------------------------------------------------------------------- /app/views/shared/_spam_honeypot.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/app/views/shared/_spam_honeypot.html.erb -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/contact-links.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/contact-links.csv -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/assisted_digital_feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/assisted_digital_feedback.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/contact_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/contact_links.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- 1 | GovukContentSecurityPolicy.configure 2 | -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/dartsass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/dartsass.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/gds_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/gds_api.rb -------------------------------------------------------------------------------- /config/initializers/generator_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/generator_defaults.rb -------------------------------------------------------------------------------- /config/initializers/govuk_publishing_components.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/govuk_publishing_components.rb -------------------------------------------------------------------------------- /config/initializers/govuk_web_banners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/govuk_web_banners.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/problem_report_spam_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/problem_report_spam_matchers.rb -------------------------------------------------------------------------------- /config/initializers/prometheus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/prometheus.rb -------------------------------------------------------------------------------- /config/initializers/rack_attack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/rack_attack.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/support_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/support_app.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/cy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/locales/cy.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docs/assisted_digital_feedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/docs/assisted_digital_feedback.md -------------------------------------------------------------------------------- /docs/notify_template_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/docs/notify_template_parameters.md -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/jasmine.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/lib/tasks/jasmine.rake -------------------------------------------------------------------------------- /lib/tasks/lint.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/lib/tasks/lint.rake -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/script/rails -------------------------------------------------------------------------------- /spec/controllers/concerns/throttling_manager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/controllers/concerns/throttling_manager_spec.rb -------------------------------------------------------------------------------- /spec/controllers/contact/govuk/problem_reports_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/controllers/contact/govuk/problem_reports_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/contact/govuk_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/controllers/contact/govuk_controller_spec.rb -------------------------------------------------------------------------------- /spec/helpers/service_feedback_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/helpers/service_feedback_helper_spec.rb -------------------------------------------------------------------------------- /spec/javascripts/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/javascripts/spec/feedback.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/javascripts/spec/feedback.spec.js -------------------------------------------------------------------------------- /spec/lib/app_problem_report_ticket_creator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/lib/app_problem_report_ticket_creator_spec.rb -------------------------------------------------------------------------------- /spec/lib/app_suggestion_ticket_creator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/lib/app_suggestion_ticket_creator_spec.rb -------------------------------------------------------------------------------- /spec/lib/format_routing_constraint_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/lib/format_routing_constraint_spec.rb -------------------------------------------------------------------------------- /spec/lib/google_spreadsheet_store_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/lib/google_spreadsheet_store_spec.rb -------------------------------------------------------------------------------- /spec/lib/ticket_creator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/lib/ticket_creator_spec.rb -------------------------------------------------------------------------------- /spec/lib/web_support_ticket_creator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/lib/web_support_ticket_creator_spec.rb -------------------------------------------------------------------------------- /spec/models/app_problem_report_ticket_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/models/app_problem_report_ticket_spec.rb -------------------------------------------------------------------------------- /spec/models/app_suggestion_ticket_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/models/app_suggestion_ticket_spec.rb -------------------------------------------------------------------------------- /spec/models/app_ticket_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/models/app_ticket_spec.rb -------------------------------------------------------------------------------- /spec/models/assisted_digital_feedback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/models/assisted_digital_feedback_spec.rb -------------------------------------------------------------------------------- /spec/models/contact_ticket_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/models/contact_ticket_spec.rb -------------------------------------------------------------------------------- /spec/models/email_survey_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/models/email_survey_spec.rb -------------------------------------------------------------------------------- /spec/models/multi_ticket_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/models/multi_ticket_spec.rb -------------------------------------------------------------------------------- /spec/models/reply_validation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/models/reply_validation_spec.rb -------------------------------------------------------------------------------- /spec/models/report_a_problem_ticket_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/models/report_a_problem_ticket_spec.rb -------------------------------------------------------------------------------- /spec/models/service_feedback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/models/service_feedback_spec.rb -------------------------------------------------------------------------------- /spec/models/ticket_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/models/ticket_spec.rb -------------------------------------------------------------------------------- /spec/presenters/content_item_presenter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/presenters/content_item_presenter_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/assisted_digital_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/requests/assisted_digital_spec.rb -------------------------------------------------------------------------------- /spec/requests/contact_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/requests/contact_spec.rb -------------------------------------------------------------------------------- /spec/requests/content_improvement_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/requests/content_improvement_spec.rb -------------------------------------------------------------------------------- /spec/requests/govuk_app/problem_reports_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/requests/govuk_app/problem_reports_spec.rb -------------------------------------------------------------------------------- /spec/requests/govuk_app/suggestions_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/requests/govuk_app/suggestions_spec.rb -------------------------------------------------------------------------------- /spec/requests/govuk_app_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/requests/govuk_app_spec.rb -------------------------------------------------------------------------------- /spec/requests/interstitial_page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/requests/interstitial_page_spec.rb -------------------------------------------------------------------------------- /spec/requests/page_improvements_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/requests/page_improvements_spec.rb -------------------------------------------------------------------------------- /spec/requests/rate_limiting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/requests/rate_limiting_spec.rb -------------------------------------------------------------------------------- /spec/requests/root_redirects_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/requests/root_redirects_spec.rb -------------------------------------------------------------------------------- /spec/requests/service_feedback_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/requests/service_feedback_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/capybara.rb: -------------------------------------------------------------------------------- 1 | RSpec.configuration.include Capybara::DSL, type: :request 2 | -------------------------------------------------------------------------------- /spec/support/email_survey_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/support/email_survey_helpers.rb -------------------------------------------------------------------------------- /spec/support/govuk_contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/support/govuk_contact.rb -------------------------------------------------------------------------------- /spec/support/govuk_test.rb: -------------------------------------------------------------------------------- 1 | GovukTest.configure 2 | -------------------------------------------------------------------------------- /spec/support/jasmine-browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/support/jasmine-browser.json -------------------------------------------------------------------------------- /spec/support/path_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/support/path_helpers.rb -------------------------------------------------------------------------------- /spec/support/service_feedback.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/support/service_feedback.rb -------------------------------------------------------------------------------- /spec/support/validator_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/support/validator_helper.rb -------------------------------------------------------------------------------- /spec/support/webmock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/support/webmock.rb -------------------------------------------------------------------------------- /spec/system/app_problem_report_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/system/app_problem_report_spec.rb -------------------------------------------------------------------------------- /spec/system/app_suggestion_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/spec/system/app_suggestion_spec.rb -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/feedback/HEAD/yarn.lock --------------------------------------------------------------------------------