Add skeleton for theses, projects and courses

This commit is contained in:
Tobias Eidelpes 2020-05-01 11:39:57 +02:00
parent 99b4e66504
commit ffec7643a4
9 changed files with 51 additions and 1 deletions

View File

@ -0,0 +1,3 @@
// Place all the styles related to the ProjectsCrawler controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: https://sass-lang.com/

View File

@ -0,0 +1,3 @@
// Place all the styles related to the ThesesCrawler controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: https://sass-lang.com/

View File

@ -1,4 +1,4 @@
class CoursesCrawlerController < ApplicationController class CoursesCrawlerController < TissCrawlerController
def show_basic def show_basic
end end

View File

@ -0,0 +1,13 @@
class ProjectsCrawlerController < TissCrawlerController
def show_basic
end
def show_detail
end
def add_to_fav
end
end

View File

@ -0,0 +1,13 @@
class ThesesCrawlerController < TissCrawlerController
def show_basic
end
def show_detail
end
def add_to_fav
end
end

View File

@ -0,0 +1,2 @@
module ProjectsCrawlerHelper
end

View File

@ -0,0 +1,2 @@
module ThesesCrawlerHelper
end

View File

@ -0,0 +1,7 @@
require 'test_helper'
class ProjectsCrawlerControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end

View File

@ -0,0 +1,7 @@
require 'test_helper'
class ThesesCrawlerControllerTest < ActionDispatch::IntegrationTest
# test "the truth" do
# assert true
# end
end