Hello,
I am writing an app for OX App Suite which I have managed to get to show in the top bar menu on login by adding it to the array allFavorites in io.ox/core/api/apps.js as such (Note the TODO comment as well):
	I'm assuming this isn't the way this is supposed to be done in a finished product. Is there any better way as it stands to get my app into that menu as a placeholder launcher on login? Am I approaching this the wrong way?
							
						
					I am writing an app for OX App Suite which I have managed to get to show in the top bar menu on login by adding it to the array allFavorites in io.ox/core/api/apps.js as such (Note the TODO comment as well):
Code:
	// TODO: Make favorites dynamic
var allFavorites = ['io.ox/portal', 'io.ox/mail', 'io.ox/contacts',
                    'io.ox/calendar', 'io.ox/tasks', 'io.ox/files', 'com.example/myapp'];
 I'll use it as a temporary solution, then.
 I'll use it as a temporary solution, then.
							
						
Comment