Add ActionsRegistry.get_action() for convenient action lookup.
Review Request #14662 — Created Oct. 31, 2025 and updated — Latest diff uploaded
The new
get_action()takes the action's ID and returns either the
instance orNone, depending on whether the ID matched an action in the
registry. This is less verbose than the.get()call, which was
performed in various places throughout the codebase.All current call sites have been updated to use the new method.
Unit tests pass.