diff --git a/app/controllers/stats_controller.rb b/app/controllers/stats_controller.rb deleted file mode 100644 index 9a4ccefacf6..00000000000 --- a/app/controllers/stats_controller.rb +++ /dev/null @@ -1,10 +0,0 @@ -# frozen_string_literal: true - -class StatsController < ApplicationController - before_action :verify_authentication - before_action :verify_access - - def verify_access - verify_system_admin - end -end diff --git a/app/views/stats/show.html.erb b/app/views/stats/show.html.erb deleted file mode 100644 index df678f57f43..00000000000 --- a/app/views/stats/show.html.erb +++ /dev/null @@ -1,11 +0,0 @@ -<% content_for :page_title do %>  >  Stats<% end %> - -<% content_for :full_page_content do %> - <%= react_component("StatsContainer", props: { - page: "StatsContainer", - userDisplayName: current_user.display_name, - dropdownUrls: dropdown_urls, - feedbackUrl: feedback_url, - buildDate: build_date - }) %> -<% end %> diff --git a/client/app/containers/stats/StatsContainer.jsx b/client/app/containers/stats/StatsContainer.jsx deleted file mode 100644 index f18fc60ebab..00000000000 --- a/client/app/containers/stats/StatsContainer.jsx +++ /dev/null @@ -1,49 +0,0 @@ -import React from 'react'; -import AppFrame from '../../components/AppFrame'; -import AppSegment from '@department-of-veterans-affairs/caseflow-frontend-toolkit/components/AppSegment'; -import NavigationBar from '../../components/NavigationBar'; -import Footer from '@department-of-veterans-affairs/caseflow-frontend-toolkit/components/Footer'; -import { COLORS } from '@department-of-veterans-affairs/caseflow-frontend-toolkit/util/StyleConstants'; -import { BrowserRouter } from 'react-router-dom'; -import PropTypes from 'prop-types'; - -const StatsContainer = (props) => - - - - -

Caseflow Stats

- - -
-
-