Welcome to mirror list, hosted at ThFree Co, Russian Federation.

projects_controller.rb « admin « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe5ada8f1cbd903eb4ed55de250c8459e0220660 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
class Admin::ProjectsController < ApplicationController
  before_filter :authenticate_user!
  before_filter :authenticate_admin!

  def index
    @admin_projects = Project.page(params[:page])

    respond_to do |format|
      format.html # index.html.erb
      format.json { render json: @admin_projects }
    end
  end

  def show
    @admin_project = Project.find_by_code(params[:id])

    respond_to do |format|
      format.html # show.html.erb
      format.json { render json: @admin_project }
    end
  end

  def new
    @admin_project = Project.new

    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @admin_project }
    end
  end

  def edit
    @admin_project = Project.find_by_code(params[:id])
  end

  def create
    @admin_project = Project.new(params[:project])

    respond_to do |format|
      if @admin_project.save
        format.html { redirect_to [:admin, @admin_project], notice: 'Project was successfully created.' }
        format.json { render json: @admin_project, status: :created, location: @admin_project }
      else
        format.html { render action: "new" }
        format.json { render json: @admin_project.errors, status: :unprocessable_entity }
      end
    end
  end

  def update
    @admin_project = Project.find_by_code(params[:id])

    respond_to do |format|
      if @admin_project.update_attributes(params[:project])
        format.html { redirect_to [:admin, @admin_project], notice: 'Project was successfully updated.' }
        format.json { head :ok }
      else
        format.html { render action: "edit" }
        format.json { render json: @admin_project.errors, status: :unprocessable_entity }
      end
    end
  end

  def destroy
    @admin_project = Project.find_by_code(params[:id])
    @admin_project.destroy

    respond_to do |format|
      format.html { redirect_to admin_projects_url }
      format.json { head :ok }
    end
  end
end