f5e9f3699f
Dictionary json ingest to database, view populated with database contents
7 lines
135 B
Ruby
7 lines
135 B
Ruby
class DictionaryController < ApplicationController
|
|
def index
|
|
@parts_of_speech = PartOfSpeech.all
|
|
@words = Word.all
|
|
end
|
|
end
|