Add dictionary controller with index route

This commit is contained in:
maddiebaka
2023-10-12 20:02:22 -04:00
parent 6f46b1be7c
commit bbe677f201
5 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class DictionaryController < ApplicationController
def index
@parts_of_speech = PartOfSpeech.all
end
end