Sha256: 08e0b30ce7da2b2c03a34fc0102fc79f8aa34d0464fe9b3c53fde01bc146f5bf
Contents?: true
Size: 278 Bytes
Versions: 10
Compression:
Stored size: 278 Bytes
Contents
# frozen_string_literal: true module Metatron # Used for "normal" sync requests class SyncController < Controller options "/" do headers "Access-Control-Allow-Methods" => ["POST"] halt 200 end post "/" do halt(sync.to_json) end end end
Version data entries
10 entries across 10 versions & 1 rubygems