Sha256: 9878a3a7fb267f06f560e9748ae20f6fb12ad7eaf032b5254420f42bb01d4805
Contents?: true
Size: 1.06 KB
Versions: 8
Compression:
Stored size: 1.06 KB
Contents
Rails.application.routes.draw do # Settings get "/cytoplasm" => "Cytoplasm/settings#index", :as => :cytoplasm_settings get "/cytoplasm/general" => "Cytoplasm/settings#general", :as => :cytoplasm_general_settings get "/cytoplasm/layout" => "Cytoplasm/settings#layout", :as => :cytoplasm_layout_settings get "/cytoplasm/colors" => "Cytoplasm/settings#colors", :as => :cytoplasm_colors_settings post "/cytoplasm/settings/fetch" => "Cytoplasm/settings#fetch" # Fonts get "/cytoplasm/fonts" => "Cytoplasm/fonts#index", :controller => Cytoplasm::FontsController, :action => :index, :as => :cytoplasm_fonts get "/cytoplasm/fonts/:directory/:family" => "Cytoplasm/fonts#show", :controller => Cytoplasm::FontsController, :action => :show, :as => :cytoplasm_show_font post "/cytoplasm/fonts/fetch_all" => "Cytoplasm/fonts#fetch_all" post "/cytoplasm/fonts/import" => "Cytoplasm/fonts#import" post "/cytoplasm/fonts/remove" => "Cytoplasm/fonts#remove" post "/cytoplasm/fonts/enable" => "Cytoplasm/fonts#enable" post "/cytoplasm/fonts/disable" => "Cytoplasm/fonts#disable" end
Version data entries
8 entries across 8 versions & 1 rubygems