summaryrefslogtreecommitdiff
path: root/qa/qa/page/admin/settings/main.rb
blob: f0b34b1f7884dfe55127f71ba1f13decd45e0e22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module QA
  module Page
    module Admin
      module Settings
        class Main < Page::Base
          include QA::Page::Settings::Common

          view 'app/views/admin/application_settings/show.html.haml' do
            element :terms_settings
          end

          def expand_repository_storage(&block)
            
            expand_section(:terms_settings) do
              RepositoryStorage.perform(&block)
            end
          end
        end
      end
    end
  end
end