Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/ivyportal 18014 user set own password permission is ignored in portal with change password feature 10 #900

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,16 @@ Portal supports creating custom action buttons as a column in case widget for sp

Follow these steps to implement it:

#. Create a new process that will be triggered after clicking on the custom action button. In this example, the process will destroy the case.
#. Create a new process that will be triggered after clicking on the custom action button. In this process, define a request start event that accepts the ``uuid`` parameter.
When the ``Custom Action`` button on the case details page is clicked, Portal will call this process and pass the case UUID as
the ``uuid`` parameter.

|custom-action-button-process-demo|

#. Design and implement the action/script for the custom action within this process.

|custom-action-destroy-case|

#. Describe the custom action button in ``custom-fields.yaml``.

.. code-block:: yaml
Expand Down Expand Up @@ -593,3 +599,5 @@ Below are the definition of these attributes:

.. |custom-action-button-custom-field| image:: images/new-dashboard-case-widget/custom-action-button-custom-field.png
.. |custom-action-button-process-demo| image:: images/new-dashboard-case-widget/custom-action-button-process-demo.png
.. |custom-action-button-custom-field-start| image:: images/new-dashboard-case-widget/custom-action-button-custom-field-start.png
.. |custom-action-destroy-case| image:: images/new-dashboard-case-widget/custom-action-destroy-case.png
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ HowTo: Set substitute

.. note::

Grant either permission :bdg-ref-warning:`🔑UserCreateOwnSubstitute <UserCreateOwnSubstitute>` or :bdg-ref-warning:`🔑UserCreateSubstitute <UserCreateSubstitute>`
Grant either permission :bdg-warning:`🔑UserCreateOwnSubstitute <UserCreateOwnSubstitute>` or :bdg-ref-warning:`🔑UserCreateSubstitute <UserCreateSubstitute>`
to allow a user to create their own substitute definitions or create substitute definitions for all users, respectively.

Change Password
Expand Down
Loading