Skip to main content
Skip table of contents

[Plugins] User context data provider

This particular feature was introduced with Jems V9 and Jems-plugin-contract V1.4.9

A basic example of getting user information within the plugin context is the development of a plugin that exports data, but it exports differently depending if the user is an applicant or programme user.

Plugins can have information about the user who effectively triggered the plugin call, querying the new CurrentUserDataProvider, more specifically the function call getCurrentUserData().

CurrentUserDataProvider allows access to all information regarding users, like what projects they have access, privileges.. even the partner and GDPR flag in a project.

Since privileges is quite a big list/complex to quick understand, certain helpers can also be used :

  • isApplicant()

  • isProgrammeUser()

    • Only for programme users:
      hasAccessAllApplications (at least VIEW)
      hasAccessProjectCorrections (at least 1 VIEW)
      hasAccessProjectReporting (at least 1 VIEW)
      hasAccessPartnerReporting (at least 1 VIEW)
      hasAccessContracting (at least 1 VIEW)
      hasAccessProgrammeSetup (at least 1 VIEW)
      hasAccessPayments( at least 1 view in all Payments module)
      hasAccessControllers*( at least 1 view in all Controllers module)

See reference:

CODE
jems/plugin/contract/services/privileges/CurrentUserUtils.kt

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.