Sha256: 054f2024252973860e6996a7907ab222a75ca7ba9fcabc4f84bbd69c4d544e4f
Contents?: true
Size: 259 Bytes
Versions: 33
Compression:
Stored size: 259 Bytes
Contents
class Admin::AccountsController < Admin::BaseController def index @accounts = Account.all end def search @accounts = Account.search params[:query] render :index end def show @account = Account.find_by_keyword params[:id] end end
Version data entries
33 entries across 33 versions & 1 rubygems