ambition/app/controllers/shares_controller.rb

19 lines
251 B
Ruby

class SharesController < ApplicationController
before_action :authenticate
#当前用户创建分享
def create
#Todo
end
#获取项目的分享列表
def getShareList
#Todo
end
end