Files
Woka_Native_iOS/WOKA/Helpers/NsNotificationExtension.swift
Bilal a8f0b7b662 - contact apple developer, now if enrolling for a organisation account, same domain website is compulsary
- Completed the blogs detail screen, also handled the language change.
- added a nsnotification to handle the sidebar only on home an my list
- Added api for like , unlike , fav remove, with data models.
- handled the like unlike realtime, without the extra network call.
- added realtime language change will update the fav cells.
2024-06-14 21:27:18 +05:30

15 lines
350 B
Swift

//
// NsNotificationExtension.swift
// WOKA
//
// Created by Bilal on 04/06/2024.
//
import Foundation
extension Notification.Name {
static let languageDidChange = Notification.Name("languageDidChange")
static let linkPush = Notification.Name("linkPush")
static let enableDisableSideBar = Notification.Name("enableDisableSideBar")
}