This repository has been archived on 2020-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
counter/config/routes.rb

11 lines
213 B
Ruby

# frozen_string_literal: true
Rails.application.routes.draw do
root 'counter#show'
get '/cluster', to: 'cluster#show'
post '/cluster', to: 'cluster#create'
get '/cluster/:uuid', to: 'counter#show'
end