blob: 1102ef6b0176f3f39e3716d4e04d626004a0931c (
plain)
1
2
3
4
5
6
7
8
|
# frozen_string_literal: true
namespace :instance_statistics do
root to: redirect('-/instance_statistics/conversational_development_index')
resources :cohorts, only: :index
resources :conversational_development_index, only: :index
end
|