15 lines
		
	
	
		
			451 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			451 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import webnotes
 | |
| 
 | |
| def execute():
 | |
| 	webnotes.clear_perms("Profile")
 | |
| 	webnotes.reload_doc("core", "doctype", "profile")
 | |
| 	webnotes.conn.sql("""delete from `tabDefaultValue` where defkey='theme'""")
 | |
| 	webnotes.delete_doc("Page", "profile-settings")
 | |
| 	return
 | |
| 
 | |
| 	for name in webnotes.conn.sql("""select name from tabProfile"""):
 | |
| 		theme = webnotes.conn.get_default("theme", name[0])
 | |
| 		if theme:
 | |
| 			webnotes.conn.set_value("Profile", name[0], "theme", theme)
 | |
| 			
 |