Embeding Power Bi to the main page

Hi all,

I’m brand new to RT and I have a requirement to embed a PowerBI dashboard to the main page of RT.

Is this something feasible? Any hints on how to proceed?

Thanks for the help

I’ve never used power bi before, if you can get some HTML back from it though you could make your own porlet to add that html to the RT homepage

Thank you for the answer. Actually, Power BI is providing the HTML iframe to embed on external website. How can I create a porlet and add it to the RT homepage?

You can create a file:

local/html/Elements/test

Then in your RT_SiteConfig.pm add the new portlet to the homepage components config:

Set($HomepageComponents, 
[ 'test',
  'QuickCreate',
  'QueueList',
  'MyAdminQueues',
  'MySupportQueues',
  'MyReminders',
  'RefreshHomepage',
  'Dashboards',
  'SavedSearches',
  'FindUser',
  'MyAssets',
  'FindAsset',
  'FindGroup',
]);

Then clear your mason cache and restart your web server