Implement action Staffs::People::AccountConnectionLinksController#new
This commit is contained in:
parent
241917eccf
commit
9e51061afe
4 changed files with 19 additions and 1 deletions
|
@ -5,4 +5,15 @@
|
||||||
[@person.full_name, staff_person_path(@person)],
|
[@person.full_name, staff_person_path(@person)],
|
||||||
translate('.link_to_connect_account'),
|
translate('.link_to_connect_account'),
|
||||||
) %>
|
) %>
|
||||||
|
|
||||||
|
<div class="text-center">
|
||||||
|
<p class="lead">
|
||||||
|
<%= translate '.description' %>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<%= link_to translate('.generate'),
|
||||||
|
staff_person_account_connection_link_path,
|
||||||
|
method: :post,
|
||||||
|
class: 'btn btn-primary btn-lg' %>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -15,3 +15,4 @@ en:
|
||||||
account_connection_links:
|
account_connection_links:
|
||||||
new:
|
new:
|
||||||
link_to_connect_account: Link to connect account
|
link_to_connect_account: Link to connect account
|
||||||
|
generate: Generate
|
||||||
|
|
|
@ -16,3 +16,9 @@ ru:
|
||||||
account_connection_links:
|
account_connection_links:
|
||||||
new:
|
new:
|
||||||
link_to_connect_account: Ссылка для присоединения аккаунта
|
link_to_connect_account: Ссылка для присоединения аккаунта
|
||||||
|
generate: Сгенерировать
|
||||||
|
description: >
|
||||||
|
Сгенерировать ссылку, с помощью которой человек сможет привязать
|
||||||
|
свой аккаунт к данной личности. Эта ссылка предназначена
|
||||||
|
для передачи только этому человеку. Если ссылка уже существует,
|
||||||
|
то новая ссылка заменит прежнюю, прежняя перестанет работать.
|
||||||
|
|
|
@ -68,7 +68,7 @@ Rails.application.routes.draw do
|
||||||
|
|
||||||
resource :account_connection_link,
|
resource :account_connection_link,
|
||||||
controller: 'people/account_connection_links',
|
controller: 'people/account_connection_links',
|
||||||
only: :new
|
only: %i[new create]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Reference in a new issue