Sha256: ee734d6ab4c88a1338f332affaa98cff731ac183da105f67a729435f5d74ac1f

Contents?: true

Size: 1.36 KB

Versions: 1

Compression:

Stored size: 1.36 KB

Contents

# encoding: UTF-8

# Copyright 2011 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

1 entries across 1 versions & 1 rubygems

Version Path
iqvoc-4.1.0 app/controllers/concepts/scheme_controller.rb