EPP transfer request improvements

This commit is contained in:
Martin Lensment 2014-09-19 13:22:10 +03:00
parent 2d2a12b7d0
commit d5954239da
10 changed files with 56 additions and 5 deletions

View file

@ -1,6 +1,10 @@
class Admin::ContactsController < ApplicationController
before_action :set_contact, only: [:show]
def new
@contact = Contact.new
end
def index
@q = Contact.search(params[:q])
@contacts = @q.result.page(params[:page])