Comment 'Hello @Genesis !On...' to 'On the profiles, have a public block for the apps'
  • Hello @Genesis !

    On this page https://github.com/unaio/una/wiki/Dev-API you may see that apps have the method which browses the author content like this one:

    array (

     'module' => 'bx_files',

     'method' => 'browse_author',

     'params' => 

     array (

      0 => '{profile_id}',

      1 => 

      array (

       'per_page' => 'bx_files_per_page_profile',

       'empty_message' => false,

       'no_toolbar' => true,

      ),

     ),

    )

    So you need to modify via Developer it like to add the visibility limit:

    array (

     'module' => 'bx_files',

     'method' => 'browse_author',

     'params' => 

     array (

      0 => '{profile_id}',

      1 => 

      array (

    'allow_visible_to' => 3,

       'per_page' => 'bx_files_per_page_profile',

       'empty_message' => false,

       'no_toolbar' => true,

      ),

     ),

    )