Archive: ComponentOwl Rails app, DB backups, go redirect script

This commit is contained in:
EC2 Default User
2026-03-23 16:20:05 +00:00
commit 50037f386f
218 changed files with 14558 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
module UninstallHelper
#buga> tohle by melo byt jen docasne reseni (vysoce nekonzistentni)
def uninstall_issues(product)
stdl_issues = ['no-phone-sync', 'no-outlook-sync']
issues = UninstallIssue.all
issues = issues.delete_if {|r| stdl_issues.include?(r.code) } unless product.is_featured?
issues.map {|r| [r.display_name, r.id] }
end
end