1
0
-1

Hi, 

Is there a "payment wall" plugin or method I can install or Integrate that will prevent anyone from accessing their account and app features unless the monthly subscription or once off payment has been paid?

So far Joget I really like Joget, im really hoping this is possible and not to technical


Kind Regards,

Richard

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      You can implement the check inside Joget app itself through Permission Control regardless it is payment made/ subscription active or not.

      For example, you can use Bean Shell Permission inside a userview category with sample code snippet below.

      if("#form.account.active[{currentUser.username}]#".equals("active")){
      	return true;
      else{
      	return false;
      }

      This will check if the record row inside the table name "account", with primary key of the current logged in user's username.

      If the value is "active", means user can see the particular category in userview.



        CommentAdd your comment...