instead of using a fav page for each content, use a general favorites pane where the user can select which favs shall be shown
24 lines
241 B
Ruby
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
|