TokiTranslate/app/controllers/dictionary_controller.rb

6 lines
113 B
Ruby
Raw Normal View History

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