20 lines
221 B
Ruby
20 lines
221 B
Ruby
class FavoritesController < ApplicationController
|
|
|
|
def people
|
|
@favoritePeople = FavoritePerson.all
|
|
@host = 'https://tiss.tuwien.ac.at'
|
|
end
|
|
|
|
def courses
|
|
|
|
end
|
|
|
|
def theses
|
|
|
|
end
|
|
|
|
def projects
|
|
|
|
end
|
|
end
|