ambition/app/controllers/projects_controller.rb

36 lines
441 B
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

class ProjectsController < ApplicationController
before_action :authenticate
#获取我的项目列表user_id保存在session中.
def index
#Todo
end
#创建项目
def create
#Todo
end
#项目添加用户
def addUsers
#Todo
end
#项目详情
def detail
#Todo
end
end