mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 14:05:02 +02:00
13 lines
244 B
Ruby
13 lines
244 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "helpers/endpoint"
|
|
|
|
class EndpointApiForbidden < Endpoint
|
|
get "/api/v1/dependencies" do
|
|
halt 403
|
|
end
|
|
end
|
|
|
|
require_relative "helpers/artifice"
|
|
|
|
Artifice.activate_with(EndpointApiForbidden)
|