0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Unknown action

Posted at

こんにちは!
今週はエラーと闘いまくりの1週間でした。

今回も今後のエラーの参考になるようにと思い、
記事を書いていきます。

Unknown action

スクリーンショット 2021-07-18 17.38.57.png

なんやこのエラー画面は!
NameErrorやらNoMethodErrorとかに比べると
随分シュールなエラー文になってますね。
今週はエラー出しまくったから、
「もうお前無理!」って烙印押されちゃったんですかね。

The action 'create_admin_profiles' could not be found for AdminUsers:

「create_admin_profileとかいうアクションが見つけられへんわ!!!何しとんねん!!!」
って怒られました。すみません。

解決

registrations_controller.rbで
renderに続くアクション名を

def create
  省略

 render :new_admin_profile
end

def create_admin_profile
 省略

 render :new_admin_profile and return
end

と記述しているのですが、

config/routes.rbにおいて

スクリーンショット 2021-07-18 17.49.49.png

new_admin_profiles
create_admin_profiles

と複数形にして完全にアクション名を
間違えてました。

今後こんな内容で2時間も3時間も悩まなくて済むように
記事にしときました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?