TokiTranslate/app/controllers/dictionary_controller.rb
2023-10-12 20:05:35 -04:00

6 lines
113 B
Ruby

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