Activate GitHub Sponsors link
This commit is contained in:
parent
812e8f0f13
commit
a69434fac1
|
@ -81,7 +81,7 @@ class OrganizerViewController: UITableViewController, StrongTableHost {
|
||||||
}
|
}
|
||||||
model.setHeader(L10n.Core.Organizer.Sections.Support.header, forSection: .support)
|
model.setHeader(L10n.Core.Organizer.Sections.Support.header, forSection: .support)
|
||||||
model.set([.connectionStatus], forSection: .vpn)
|
model.set([.connectionStatus], forSection: .vpn)
|
||||||
model.set([.donate, .joinCommunity], forSection: .support)
|
model.set([.donate, .githubSponsors, .joinCommunity], forSection: .support)
|
||||||
|
|
||||||
model.set([.openAbout], forSection: .about)
|
model.set([.openAbout], forSection: .about)
|
||||||
model.set([.uninstall], forSection: .destruction)
|
model.set([.uninstall], forSection: .destruction)
|
||||||
|
@ -441,7 +441,7 @@ extension OrganizerViewController {
|
||||||
|
|
||||||
case donate
|
case donate
|
||||||
|
|
||||||
// case githubSponsors
|
case githubSponsors
|
||||||
|
|
||||||
case translate
|
case translate
|
||||||
|
|
||||||
|
@ -534,10 +534,10 @@ extension OrganizerViewController {
|
||||||
cell.leftText = L10n.Core.Organizer.Cells.Donate.caption
|
cell.leftText = L10n.Core.Organizer.Cells.Donate.caption
|
||||||
return cell
|
return cell
|
||||||
|
|
||||||
// case .githubSponsors:
|
case .githubSponsors:
|
||||||
// let cell = Cells.setting.dequeue(from: tableView, for: indexPath)
|
let cell = Cells.setting.dequeue(from: tableView, for: indexPath)
|
||||||
// cell.leftText = L10n.Core.Organizer.Cells.GithubSponsors.caption
|
cell.leftText = L10n.Core.Organizer.Cells.GithubSponsors.caption
|
||||||
// return cell
|
return cell
|
||||||
|
|
||||||
case .translate:
|
case .translate:
|
||||||
let cell = Cells.setting.dequeue(from: tableView, for: indexPath)
|
let cell = Cells.setting.dequeue(from: tableView, for: indexPath)
|
||||||
|
@ -605,8 +605,8 @@ extension OrganizerViewController {
|
||||||
case .donate:
|
case .donate:
|
||||||
donateToDeveloper()
|
donateToDeveloper()
|
||||||
|
|
||||||
// case .githubSponsors:
|
case .githubSponsors:
|
||||||
// becomeSponsor()
|
becomeSponsor()
|
||||||
|
|
||||||
case .translate:
|
case .translate:
|
||||||
offerTranslation()
|
offerTranslation()
|
||||||
|
|
Loading…
Reference in New Issue