diff options
Diffstat (limited to 'qa/qa/page')
-rw-r--r-- | qa/qa/page/project/settings/ci_cd.rb | 10 | ||||
-rw-r--r-- | qa/qa/page/project/settings/deploy_tokens.rb | 4 | ||||
-rw-r--r-- | qa/qa/page/project/settings/repository.rb | 6 |
3 files changed, 12 insertions, 8 deletions
diff --git a/qa/qa/page/project/settings/ci_cd.rb b/qa/qa/page/project/settings/ci_cd.rb index 46f93fad61e..01f7ab43d27 100644 --- a/qa/qa/page/project/settings/ci_cd.rb +++ b/qa/qa/page/project/settings/ci_cd.rb @@ -13,6 +13,16 @@ module QA element :variables_settings_content end + view 'app/views/shared/deploy_tokens/_index.html.haml' do + element :deploy_tokens_settings + end + + def expand_deploy_tokens(&block) + expand_section(:deploy_tokens_settings) do + Settings::DeployTokens.perform(&block) + end + end + def expand_runners_settings(&block) expand_section(:runners_settings_content) do Settings::Runners.perform(&block) diff --git a/qa/qa/page/project/settings/deploy_tokens.rb b/qa/qa/page/project/settings/deploy_tokens.rb index 3173752d40a..3c3ed4f8716 100644 --- a/qa/qa/page/project/settings/deploy_tokens.rb +++ b/qa/qa/page/project/settings/deploy_tokens.rb @@ -5,7 +5,7 @@ module QA module Project module Settings class DeployTokens < Page::Base - view 'app/views/projects/deploy_tokens/_form.html.haml' do + view 'app/views/shared/deploy_tokens/_form.html.haml' do element :deploy_token_name element :deploy_token_expires_at element :deploy_token_read_repository @@ -13,7 +13,7 @@ module QA element :create_deploy_token end - view 'app/views/projects/deploy_tokens/_new_deploy_token.html.haml' do + view 'app/views/shared/deploy_tokens/_new_deploy_token.html.haml' do element :created_deploy_token_section element :deploy_token_user element :deploy_token diff --git a/qa/qa/page/project/settings/repository.rb b/qa/qa/page/project/settings/repository.rb index 58ed37870b7..7875a38dcf3 100644 --- a/qa/qa/page/project/settings/repository.rb +++ b/qa/qa/page/project/settings/repository.rb @@ -31,12 +31,6 @@ module QA end end - def expand_deploy_tokens(&block) - expand_section(:deploy_tokens_settings) do - DeployTokens.perform(&block) - end - end - def expand_mirroring_repositories(&block) expand_section(:mirroring_repositories_settings_section) do MirroringRepositories.perform(&block) |