TokiTranslate/app/controllers/dictionary_controller.rb
maddiebaka f5e9f3699f Add dictionary ingest and view
Dictionary json ingest to database, view populated with database contents
2023-10-12 22:24:35 -04:00

7 lines
135 B
Ruby

class DictionaryController < ApplicationController
def index
@parts_of_speech = PartOfSpeech.all
@words = Word.all
end
end