mirror of
https://github.com/internetee/registry.git
synced 2025-05-29 17:10:08 +02:00
Rename error message
This commit is contained in:
parent
8371dcf46e
commit
b39c3ab262
5 changed files with 6 additions and 8 deletions
|
@ -146,6 +146,6 @@ class Registrar::SessionsController < Devise::SessionsController
|
||||||
|
|
||||||
def check_ip
|
def check_ip
|
||||||
return if WhiteIp.registrar_ip_white?(request.ip)
|
return if WhiteIp.registrar_ip_white?(request.ip)
|
||||||
render text: t('ip_is_not_whitelisted') and return
|
render text: t('access_denied') and return
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -13,7 +13,7 @@ class RegistrarController < ApplicationController
|
||||||
def check_ip
|
def check_ip
|
||||||
return unless current_user
|
return unless current_user
|
||||||
return if current_user.registrar.registrar_ip_white?(request.ip)
|
return if current_user.registrar.registrar_ip_white?(request.ip)
|
||||||
flash[:alert] = t('ip_is_not_whitelisted')
|
flash[:alert] = t('access_denied')
|
||||||
sign_out(current_user)
|
sign_out(current_user)
|
||||||
redirect_to registrar_login_path and return
|
redirect_to registrar_login_path and return
|
||||||
end
|
end
|
||||||
|
|
|
@ -796,3 +796,4 @@ en:
|
||||||
registrant_domain_verification_rejected: 'Domain owner change has been rejected successfully.'
|
registrant_domain_verification_rejected: 'Domain owner change has been rejected successfully.'
|
||||||
registrant_domain_verification_rejected_failed: 'Something went wrong'
|
registrant_domain_verification_rejected_failed: 'Something went wrong'
|
||||||
ip_is_not_whitelisted: 'IP is not whitelisted'
|
ip_is_not_whitelisted: 'IP is not whitelisted'
|
||||||
|
access_denied: 'Access denied'
|
||||||
|
|
|
@ -44,7 +44,6 @@ ApiUser.where(
|
||||||
admin1 = {
|
admin1 = {
|
||||||
username: 'user1',
|
username: 'user1',
|
||||||
password: 'testtest',
|
password: 'testtest',
|
||||||
password_confirmation: 'testtest',
|
|
||||||
email: 'user1@example.ee',
|
email: 'user1@example.ee',
|
||||||
identity_code: '37810013855',
|
identity_code: '37810013855',
|
||||||
country_code: 'EE'
|
country_code: 'EE'
|
||||||
|
@ -52,7 +51,6 @@ admin1 = {
|
||||||
admin2 = {
|
admin2 = {
|
||||||
username: 'user2',
|
username: 'user2',
|
||||||
password: 'testtest',
|
password: 'testtest',
|
||||||
password_confirmation: 'testtest',
|
|
||||||
email: 'user2@example.ee',
|
email: 'user2@example.ee',
|
||||||
identity_code: '37810010085',
|
identity_code: '37810010085',
|
||||||
country_code: 'EE'
|
country_code: 'EE'
|
||||||
|
@ -60,7 +58,6 @@ admin2 = {
|
||||||
admin3 = {
|
admin3 = {
|
||||||
username: 'user3',
|
username: 'user3',
|
||||||
password: 'testtest',
|
password: 'testtest',
|
||||||
password_confirmation: 'testtest',
|
|
||||||
email: 'user3@example.ee',
|
email: 'user3@example.ee',
|
||||||
identity_code: '37810010727',
|
identity_code: '37810010727',
|
||||||
country_code: 'EE'
|
country_code: 'EE'
|
||||||
|
@ -69,7 +66,7 @@ admin3 = {
|
||||||
[admin1, admin2, admin3].each do |at|
|
[admin1, admin2, admin3].each do |at|
|
||||||
admin = AdminUser.where(at)
|
admin = AdminUser.where(at)
|
||||||
next if admin.present?
|
next if admin.present?
|
||||||
admin = AdminUser.new(at)
|
admin = AdminUser.new(at.merge({ password_confirmation: 'testtest' }))
|
||||||
admin.roles = ['admin']
|
admin.roles = ['admin']
|
||||||
admin.save
|
admin.save
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,7 +5,7 @@ feature 'Sessions', type: :feature do
|
||||||
it 'should not see login page' do
|
it 'should not see login page' do
|
||||||
WhiteIp.destroy_all
|
WhiteIp.destroy_all
|
||||||
visit registrar_login_path
|
visit registrar_login_path
|
||||||
page.should have_text('IP is not whitelisted')
|
page.should have_text('Access denied')
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should see log in' do
|
it 'should see log in' do
|
||||||
|
@ -23,7 +23,7 @@ feature 'Sessions', type: :feature do
|
||||||
fill_in 'depp_user_tag', with: @api_user_invalid_ip.username
|
fill_in 'depp_user_tag', with: @api_user_invalid_ip.username
|
||||||
fill_in 'depp_user_password', with: @api_user_invalid_ip.password
|
fill_in 'depp_user_password', with: @api_user_invalid_ip.password
|
||||||
click_button 'Log in'
|
click_button 'Log in'
|
||||||
page.should have_text('IP is not whitelisted')
|
page.should have_text('Access denied')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue