Importing favorites from vkontakte

This commit is contained in:
magnolia-fan
2011-11-30 03:08:00 +04:00
parent 41e9165ff4
commit f8d86216c8
4 changed files with 58 additions and 8 deletions
+1 -2
View File
@@ -6,6 +6,7 @@ Beathaven::Application.routes.draw do
match 'user/auth' => 'user#auth'
match 'user/update' => 'user#update'
match 'user/set_first_favorites' => 'user#set_first_favorites'
match 'lastfm/connect' => 'last_fm#connect'
match 'lastfm/getinfo' => 'last_fm#getinfo'
@@ -18,8 +19,6 @@ Beathaven::Application.routes.draw do
match 'playlist/(:id)' => 'playlist#data'
match 'playlist/lastfm-top50/(:artist)' => 'playlist#lastfm_top50', constraints: { artist: /.*/ }
match 'settings' => 'user#settings'
match 'artist/autocomplete' => 'last_fm#autocomplete'
match 'artist/(:artist)' => 'artist#data', constraints: { artist: /.*/ }
end