class ProjectsController < ApplicationController before_action :set_project, only: [:show, :edit, :update, :destroy] before_action :authenticate_user! # GET /projects # GET /projects.json def index @projects = Project.all @active_projects = @projects.where(status: Project.status_keys[:active]) @upcoming_projects = @projects.where(status: Project.status_keys[:upcoming]) @backlog_projects = @projects.where(status: Project.status_keys[:backlog]) @completed_projects = @projects.where(status: Project.status_keys[:completed]) end # GET /projects/1 # GET /projects/1.json def show end # GET /projects/new def new @editing = false @project = Project.new end # GET /projects/1/edit def edit @editing = true end # POST /projects # POST /projects.json def create @project = Project.new(project_params) respond_to do |format| if @project.save format.html { redirect_to @project, notice: 'Project was successfully created.' } format.json { render :show, status: :created, location: @project } else format.html { render :new } format.json { render json: @project.errors, status: :unprocessable_entity } end end end # PATCH/PUT /projects/1 # PATCH/PUT /projects/1.json def update respond_to do |format| if @project.update(project_params) format.html { redirect_to @project, notice: 'Project was successfully updated.' } format.json { render :show, status: :ok, location: @project } else format.html { render :edit } format.json { render json: @project.errors, status: :unprocessable_entity } end end end # DELETE /projects/1 # DELETE /projects/1.json def destroy @project.destroy respond_to do |format| format.html { redirect_to projects_url, notice: 'Project was successfully destroyed.' } format.json { head :no_content } end end private # Use callbacks to share common setup or constraints between actions. def set_project @project = Project.find(params[:id]) end # Never trust parameters from the scary internet, only allow the white list through. def project_params params.require(:project).permit(:title, :status, :requirements_due, :requirements_completed, :design_due, :design_completed, :devops_due, :devops_completed, :qalaunch_due, :qalaunch_completed) end end