How to get CRUD action within a template

Quick question.
Is there a way to find out what is the CRUD action within a template in Phoenix?

Thank you

@conn.private.phoenix_action is what I am after, but it is private.

Phoenix.Controller.action_name(conn) is public though :slight_smile:

1 Like

Thank you very much!