From 5bb0bae8588b48b4c8ffe71e29341d6d8518b4bb Mon Sep 17 00:00:00 2001 From: Pfingstfrosch Date: Sat, 16 May 2020 11:45:05 +0200 Subject: [PATCH] fix of inheritance error -> uninitialized constant Crawlers::ApplicationController --- app/controllers/crawlers/tiss_crawler_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/crawlers/tiss_crawler_controller.rb b/app/controllers/crawlers/tiss_crawler_controller.rb index 50a6b86..fac3647 100644 --- a/app/controllers/crawlers/tiss_crawler_controller.rb +++ b/app/controllers/crawlers/tiss_crawler_controller.rb @@ -1,4 +1,4 @@ -class Crawlers::TissCrawlerController < Crawlers::ApplicationController +class Crawlers::TissCrawlerController < ApplicationController # self designed lib to call the Tiss API require 'tiss/tiss_crawler'