Retrieve pack name for the action which is being currently executed. :rtype: ``str``
(self)
| 200 | return self.get_pack_ref() |
| 201 | |
| 202 | def get_pack_ref(self): |
| 203 | """ |
| 204 | Retrieve pack name for the action which is being currently executed. |
| 205 | |
| 206 | :rtype: ``str`` |
| 207 | """ |
| 208 | if self.action: |
| 209 | return self.action.pack |
| 210 | |
| 211 | return pack_constants.DEFAULT_PACK_NAME |
| 212 | |
| 213 | def get_user(self): |
| 214 | """ |
no outgoing calls
no test coverage detected