blob: 979c8ad46715b099d57b12e0f9a274b26d0cab35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
class EmailAliasesController < ApplicationController
before_filter :fetch_user
# get a list of email aliases for the given user?
def index
@aliases = @user.email_aliases
respond_with @aliases
end
def create
@alias = @user.add_email_alias(params[:email_alias])
flash[:notice] = t(:email_alias_created_successfully) unless @alias.errors
respond_with @alias
end
def update
@alias = @user.get_email_alias(params[:id])
@alias.set_email(params[:email_alias])
flash[:notice] = t(:email_alias_updated_successfully) unless @alias.errors
respond_with @alias
end
def destroy
@alias = @user.get_email_alias(params[:id])
flash[:notice] = t(:email_alias_destroyed_successfully)
@alias.destroy
end
protected
def fetch_user
@user = User.find_by_param(params[:user_id])
access_denied unless admin? or (@user == current_user)
end
end
|