mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-23 16:13:14 +01:00
9 lines
377 B
Ruby
9 lines
377 B
Ruby
|
class ImportController < ApplicationController
|
||
|
def new_papers_callback
|
||
|
require 'open-uri'
|
||
|
api_key = Rails.application.config_for(:morph)["key"]
|
||
|
uri = URI.parse("https://api.morph.io/jrlover/city_council_leipzig_recent_papers/data.json?key=#{api_key}&query=select%20*%20from%20%27data%27")
|
||
|
Paper.import_from_json(uri.read)
|
||
|
render :nothing => true
|
||
|
end
|
||
|
end
|