Sha256: 005ae3d9e9a14a17e881fe0a406d42fe071947ddfa8558a2605a393ea105f2b7

Contents?: true

Size: 1.94 KB

Versions: 10

Compression:

Stored size: 1.94 KB

Contents

#--
# Copyright (c) 2010-2011 Michael Berkovich
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#++

WillFilter::Engine.routes.draw do
  match 'filter/index', :to => 'filter#index'
  match 'filter/add_condition', :to => 'filter#add_condition'
  match 'filter/update_condition', :to => 'filter#update_condition'
  match 'filter/remove_condition', :to => 'filter#remove_condition'
  match 'filter/remove_all_conditions', :to => 'filter#remove_all_conditions'
  match 'filter/load_filter', :to => 'filter#load_filter'
  match 'filter/save_filter', :to => 'filter#save_filter'
  match 'filter/update_filter', :to => 'filter#update_filter'
  match 'filter/delete_filter', :to => 'filter#delete_filter'

  match 'calendar', :to => 'calendar#index'
  match 'calendar/index', :to => 'calendar#index'

  match 'exporter', :to => 'exporter#index'
  match 'exporter/index', :to => 'exporter#index'
  match 'exporter/export', :to => 'exporter#export'

  root :to => "filter#index"
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
will_filter-3.1.11 config/routes.rb
will_filter-3.1.10 config/routes.rb
will_filter-3.1.9 config/routes.rb
will_filter-3.1.8 config/routes.rb
will_filter-3.1.7 config/routes.rb
will_filter-3.1.6 config/routes.rb
will_filter-3.1.5 config/routes.rb
will_filter-3.1.3 config/routes.rb
will_filter-3.1.2 config/routes.rb
will_filter-3.1.1 config/routes.rb