mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
Merge branch 'master' of github.com:internetee/registry
This commit is contained in:
commit
e7fb6208ce
12 changed files with 77 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
class Admin::ContactsController < ApplicationController
|
||||
class Admin::ContactsController < AdminController
|
||||
# TODO created_by and updated_by ids
|
||||
before_action :set_contact, only: [:show, :destroy, :edit, :update]
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
class Admin::DomainsController < ApplicationController
|
||||
class Admin::DomainsController < AdminController
|
||||
before_action :set_domain, only: [:show, :edit, :update, :destroy]
|
||||
before_action :verify_deletion, only: [:destroy]
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
class Admin::RegistrarsController < ApplicationController
|
||||
class Admin::RegistrarsController < AdminController
|
||||
def search
|
||||
render json: Registrar.search_by_query(params[:q])
|
||||
end
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
class Admin::SettingGroupsController < ApplicationController
|
||||
class Admin::SettingGroupsController < AdminController
|
||||
before_action :set_setting_group, only: [:show, :update]
|
||||
|
||||
def index
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue