diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2018-03-30 11:26:04 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2018-04-02 15:03:54 +0300 |
commit | 896ae6fc15ab5e0da364681c3beef8d9f7e18d38 (patch) | |
tree | e80d38a7f2c2fc0fe9470f8d8555fc92e47f050e /qa/qa.rb | |
parent | 80ef79f2bb056c5fa01b1749f942963e30dddcce (diff) | |
download | gitlab-ce-896ae6fc15ab5e0da364681c3beef8d9f7e18d38.tar.gz |
Move repository, storage, abuse settings and logging settings to expandable sections
Also reorganize application settings related to repository in more maninful sections
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'qa/qa.rb')
-rw-r--r-- | qa/qa.rb | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -90,6 +90,10 @@ module QA autoload :OAuth, 'qa/page/main/oauth' end + module Settings + autoload :Common, 'qa/page/settings/common' + end + module Menu autoload :Main, 'qa/page/menu/main' autoload :Side, 'qa/page/menu/side' @@ -150,7 +154,10 @@ module QA end module Admin - autoload :Settings, 'qa/page/admin/settings' + module Settings + autoload :RepositoryStorage, 'qa/page/admin/settings/repository_storage' + autoload :Main, 'qa/page/admin/settings/main' + end end module Mattermost |