mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-02-22 21:45:19 +01:00
8 lines
231 B
Ruby
8 lines
231 B
Ruby
module Sinatra
|
|
module RegionHelpers
|
|
def region_not_found_error(region)
|
|
halt 404, error_object("region not found", "region #{region} not found", ERROR::CODES[:REGION_NOT_FOUND])
|
|
end
|
|
end
|
|
helpers RegionHelpers
|
|
end
|