forgeplus/app/controllers/sync_forge_controller.rb

9 lines
193 B
Ruby
Raw Normal View History

class SyncForgeController < ApplicationController
2020-03-13 14:17:12 +08:00
skip_before_action :user_setup
skip_before_action :check_sign
def create
SyncForgeJob.perform_later(params[:sync_params])
end
end