Sha256: 3f1d128ce850f85b828662c170a34e1e33ba0df369176ec7969805d4fde7beef

Contents?: true

Size: 1.37 KB

Versions: 3

Compression:

Stored size: 1.37 KB

Contents

# encoding: UTF-8

# Copyright 2011-2013 innoQ Deutschland GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

class Concepts::SchemeController < ApplicationController

  def show
    @scheme = Iqvoc::Concept.root_class.instance
    authorize! :read, @scheme

    @top_concepts = Iqvoc::Concept.base_class.tops.published

    respond_to do |format|
      format.html do
      end
      format.any :rdf, :ttl do
      end
    end
  end

  def edit
    @scheme = Iqvoc::Concept.root_class.instance
    authorize! :update, @scheme
  end

  def update
    @scheme = Iqvoc::Concept.root_class.instance
    authorize! :update, @scheme

    if @scheme.update_attributes(params[:concept])
      flash[:success] = t("txt.controllers.concept_scheme.save.success")
      redirect_to scheme_path
    else
      flash[:error] = t("txt.controllers.concept_scheme.save.error")
      render :edit
    end
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
iqvoc-4.1.3 app/controllers/concepts/scheme_controller.rb
iqvoc-4.1.2 app/controllers/concepts/scheme_controller.rb
iqvoc-4.1.1 app/controllers/concepts/scheme_controller.rb