summaryrefslogtreecommitdiff
path: root/qa/qa/page/group/settings/general.rb
blob: 07b421f154a07e41b27ed93a0824c85b9e50cedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module QA
  module Page
    module Group
      module Settings
        class General < QA::Page::Base
          view 'app/views/groups/edit.html.haml' do
            element :permission_lfs_2fa_section
          end
          view 'app/views/groups/settings/_permissions.html.haml' do
            element :save_permissions_changes_button
          end
        end
      end
    end
  end
end