ambition/app/controllers/notes_controller.rb

12 lines
184 B
Ruby

class NotesController < ApplicationController
before_action :authenticate
#获取用户当前的通知列表
def getNotesList
#Todo
end
end