mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 19:53:05 +08:00
9 lines
193 B
Ruby
9 lines
193 B
Ruby
class SyncForgeController < ApplicationController
|
|
skip_before_action :user_setup
|
|
skip_before_action :check_sign
|
|
|
|
def create
|
|
SyncForgeJob.perform_later(params[:sync_params])
|
|
end
|
|
|
|
end |