tiss2go/app/controllers/favorites_controller.rb
Pfingstfrosch 92eff82f1a refactored favorites:
instead of using a fav page for each content, use a general favorites pane where the user can select which favs shall be shown
2020-05-12 19:19:04 +02:00

24 lines
241 B
Ruby

class FavoritesController < ApplicationController
def index
end
def people
@favoritePeople = FavoritePerson.all
@host = 'https://tiss.tuwien.ac.at'
end
def courses
end
def theses
end
def projects
end
end