The Instructure Community will enter a read-only state on November 22, 2025 as we prepare to migrate to our new Community platform in early December.
Read our blog post for more info about this change.
Found this content helpful? Log in or sign up to leave a like!
Hello,
We are finding that Canvas permissions for LTI management (when disabled to all roles except for account admins) are not granular enough to allow instructors to edit/delete installed LTIs in a course (example: redirect tool links) while removing the ability to install an entirely new app that has yet to be vetted through our security team. Instructors have the ability to install any account-level app, however.
We would like to hide the +App button from Settings > Apps > View App Configurations. I know how to hide the button using JS, but it seems that the click on View App Configurations invokes an event to happen to re-shows the button. If the page is reloaded, then the button is hidden again using $('.AddExternalToolButton').hide(); from the uploaded JS.
Account admins should retain access to the button. All non-admin roles should not.
This is what I am using right now:
$(document).ready(function(){
if($.inArray('admin',ENV['current_user_roles']) == -1) {
$(".AddExternalToolButton").hide();
console.log ('hide Add App button')
}
});
I am wondering if anyone in this group knows how to hide the button after a click on View App Configurations and the event is triggered?
Best regards,
Shane
I've had this tab open since you posted, and I feel bad that I haven't responded. It's a busy few weeks.
The solution likely requires Mutation Observers, and removing jQuery, for best practice. You can search the community for Mutation Observers, I think we mention it by name with many mixed feelings in every script discussion that uses it.
@korina_figueroa , did a nice job documenting her issue and shared a solution https://community.canvaslms.com/groups/canvas-developers/blog/2019/05/31/course-import-tool-include-...
dgrobani, posted one that resulted in a few discussions Sort Account-Level Course Page Terms in Descending Order
Thank you for responding! This is going to get me going in the right direction. Much appreciated.
Community helpTo interact with Panda Bot, our automated chatbot, you need to sign up or log in:
Sign inTo interact with Panda Bot, our automated chatbot, you need to sign up or log in:
Sign in