Class: Voluntary::Api::V1::CommunitiesController

Inherits:
ActionController::Base
  • Object
show all
Includes:
V1::BaseController
Defined in:
app/controllers/voluntary/api/v1/communities_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



31
32
33
34
35
36
37
38
39
40
# File 'app/controllers/voluntary/api/v1/communities_controller.rb', line 31

def create
  current_user.organizations.find(params[:community][:organization_id])
  resource = Community.create params[:community]
  
  respond_to do |format|
    format.json do
      render json: resource.persisted? ? resource : { errors: resource.errors.to_hash }
    end
  end
end

#destroyObject



53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'app/controllers/voluntary/api/v1/communities_controller.rb', line 53

def destroy
  resource = current_user.communities.friendly.find params[:id]
  resource.destroy
  
  respond_to do |format|
    format.json do
      render json: if resource.persisted?
        { error: I18n.t('activerecord.errors.models.community.attributes.base.deletion_failed') }
      else
        {}
      end
    end
  end
end

#indexObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'app/controllers/voluntary/api/v1/communities_controller.rb', line 6

def index
  options = {}

  options[:json] = Community.paginate page: params[:page], per_page: 10
  
  options[:meta] = { 
    pagination: {
      total_pages: options[:json].total_pages, current_page: options[:json].current_page,
      previous_page: options[:json].previous_page, next_page: options[:json].next_page
    }
  }
  
  respond_with do |format|
    format.json { render options }
  end
end

#showObject



23
24
25
26
27
28
29
# File 'app/controllers/voluntary/api/v1/communities_controller.rb', line 23

def show
  respond_to do |format|
    format.json do
      render json: Community.friendly.find(params[:id])
    end
  end
end

#updateObject



42
43
44
45
46
47
48
49
50
51
# File 'app/controllers/voluntary/api/v1/communities_controller.rb', line 42

def update
  resource = current_user.communities.friendly.find params[:id]
  resource.update_attributes params[:community]
  
  respond_to do |format|
    format.json do
      render json: resource.valid? ? resource : { errors: resource.errors.to_hash }
    end
  end
end