1
0
-1

Hi

We are wanting to add / update all our users (100's) and permissions by importing from an external file / files.  Is there any way I can do this and does any one have any code examples

 

Cheers

 

 

Ants 

 

    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      Hi Ants Hurdley

      You can use your favorite database utility to add records into your Joget Workflow database, example below:

      INSERT INTO dir_user (`id`, `username`,..............) VALUES ('myusername', 'myusername'.........);

      INSERT INTO dir_user_role (`roleId`, `userId`) VALUES ('ROLE_USER', 'myusername');

        CommentAdd your comment...