18 lines
421 B
Ruby
18 lines
421 B
Ruby
module Admin
|
|
class AccountsController < BaseController
|
|
|
|
sections 'settings'
|
|
|
|
def new
|
|
@account = Account.new(:email => params[:email])
|
|
end
|
|
|
|
def create
|
|
@account = Account.create(params[:account])
|
|
current_site.memberships.create(:account => @account) if @account.errors.empty?
|
|
|
|
respond_with @account, :location => edit_admin_current_site_url
|
|
end
|
|
|
|
end
|
|
end |