├── .babelrc ├── .buckconfig ├── .eslintrc.json ├── .flowconfig ├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ └── Root.js.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── IRANSans.ttf │ │ │ ├── IRANSans_Black.ttf │ │ │ ├── IRANSans_Bold.ttf │ │ │ ├── IRANSans_Light.ttf │ │ │ ├── IRANSans_Medium.ttf │ │ │ ├── IRANSans_UltraLight.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-ThinItalic.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ └── neuropolitical.ttf │ │ ├── java │ │ └── iGap │ │ │ └── Plus │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── raw │ │ ├── incallmanager_busytone.mp3 │ │ └── incallmanager_ringback.mp3 │ │ ├── values │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── filepaths.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── index.js ├── ios ├── Crashlytics.framework │ ├── Crashlytics │ ├── Headers │ │ ├── ANSCompatibility.h │ │ ├── Answers.h │ │ ├── CLSAttributes.h │ │ ├── CLSLogging.h │ │ ├── CLSReport.h │ │ ├── CLSStackFrame.h │ │ └── Crashlytics.h │ ├── Info.plist │ ├── Modules │ │ └── module.modulemap │ ├── run │ ├── submit │ └── uploadDSYM ├── Fabric.framework │ ├── Fabric │ ├── Headers │ │ ├── FABAttributes.h │ │ └── Fabric.h │ ├── Info.plist │ ├── Modules │ │ └── module.modulemap │ ├── run │ └── uploadDSYM ├── Firebase │ ├── Analytics │ │ ├── FirebaseCore.framework │ │ │ ├── FirebaseCore │ │ │ ├── Headers │ │ │ │ ├── FIRAnalyticsConfiguration.h │ │ │ │ ├── FIRApp.h │ │ │ │ ├── FIRConfiguration.h │ │ │ │ ├── FIRLoggerLevel.h │ │ │ │ ├── FIROptions.h │ │ │ │ └── FirebaseCore.h │ │ │ └── Modules │ │ │ │ └── module.modulemap │ │ └── FirebaseInstanceID.framework │ │ │ ├── FirebaseInstanceID │ │ │ ├── Headers │ │ │ ├── FIRInstanceID.h │ │ │ └── FirebaseInstanceID.h │ │ │ └── Modules │ │ │ └── module.modulemap │ ├── Firebase.h │ └── Messaging │ │ ├── FirebaseMessaging.framework │ │ ├── FirebaseMessaging │ │ ├── Headers │ │ │ ├── FIRMessaging.h │ │ │ └── FirebaseMessaging.h │ │ └── Modules │ │ │ └── module.modulemap │ │ └── Protobuf.framework │ │ ├── Headers │ │ ├── Any.pbobjc.h │ │ ├── Api.pbobjc.h │ │ ├── Duration.pbobjc.h │ │ ├── Empty.pbobjc.h │ │ ├── FieldMask.pbobjc.h │ │ ├── GPBArray.h │ │ ├── GPBArray_PackagePrivate.h │ │ ├── GPBBootstrap.h │ │ ├── GPBCodedInputStream.h │ │ ├── GPBCodedInputStream_PackagePrivate.h │ │ ├── GPBCodedOutputStream.h │ │ ├── GPBCodedOutputStream_PackagePrivate.h │ │ ├── GPBDescriptor.h │ │ ├── GPBDescriptor_PackagePrivate.h │ │ ├── GPBDictionary.h │ │ ├── GPBDictionary_PackagePrivate.h │ │ ├── GPBExtensionInternals.h │ │ ├── GPBExtensionRegistry.h │ │ ├── GPBMessage.h │ │ ├── GPBMessage_PackagePrivate.h │ │ ├── GPBProtocolBuffers.h │ │ ├── GPBProtocolBuffers_RuntimeSupport.h │ │ ├── GPBRootObject.h │ │ ├── GPBRootObject_PackagePrivate.h │ │ ├── GPBRuntimeTypes.h │ │ ├── GPBUnknownField.h │ │ ├── GPBUnknownFieldSet.h │ │ ├── GPBUnknownFieldSet_PackagePrivate.h │ │ ├── GPBUnknownField_PackagePrivate.h │ │ ├── GPBUtilities.h │ │ ├── GPBUtilities_PackagePrivate.h │ │ ├── GPBWellKnownTypes.h │ │ ├── GPBWireFormat.h │ │ ├── SourceContext.pbobjc.h │ │ ├── Struct.pbobjc.h │ │ ├── Timestamp.pbobjc.h │ │ ├── Type.pbobjc.h │ │ └── Wrappers.pbobjc.h │ │ ├── Modules │ │ └── module.modulemap │ │ └── Protobuf ├── GoogleService-Info.plist ├── Localizable.strings ├── api-keys │ └── fabric │ │ └── .gitignore ├── iGapPlus-tvOS │ └── Info.plist ├── iGapPlus-tvOSTests │ └── Info.plist ├── iGapPlus.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── iGapPlus-tvOS.xcscheme │ │ └── iGapPlus.xcscheme ├── iGapPlus │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-1024.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-60@2x.png │ │ │ └── icon-60@3x.png │ │ └── Contents.json │ ├── Info.plist │ ├── iGapPlus-bridging-header.h │ ├── iGapPlus.entitlements │ └── main.m ├── iGapPlusTests │ ├── Info.plist │ └── iGapPlusTests.m ├── incallmanager_busytone.mp3 └── incallmanager_ringback.mp3 ├── native └── modules │ ├── Camera │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── android │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── plus │ │ │ └── igap │ │ │ └── camera │ │ │ ├── RNIGCameraModule.java │ │ │ └── RNIGCameraPackage.java │ ├── index.js │ └── package.json │ ├── FileSystem │ ├── .gitattributes │ ├── .gitignore │ ├── FileUtil │ │ ├── index.ios.js │ │ ├── index.js │ │ └── index.windows.js │ ├── README.md │ ├── android │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── plus │ │ │ └── igap │ │ │ └── filesystem │ │ │ ├── AttachFile.java │ │ │ ├── FileUtil.java │ │ │ ├── FileWrapper.java │ │ │ ├── RNIGFileSystemModule.java │ │ │ └── RNIGFileSystemPackage.java │ ├── index.js │ ├── ios │ │ ├── RNIGFileSystem.h │ │ ├── RNIGFileSystem.m │ │ ├── RNIGFileSystem.podspec │ │ └── RNIGFileSystem.xcodeproj │ │ │ └── project.pbxproj │ ├── package.json │ └── windows │ │ ├── .gitignore │ │ ├── RNIGFileSystem.sln │ │ └── RNIGFileSystem │ │ ├── FileWrapper.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── RNIGFileSystem.rd.xml │ │ ├── RNIGFileSystem.csproj │ │ ├── RNIGFileSystemModule.cs │ │ ├── RNIGFileSystemPackage.cs │ │ └── project.json │ ├── SaveTo │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── android │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── plus │ │ │ └── igap │ │ │ └── saveto │ │ │ ├── RNSaveToModule.java │ │ │ └── RNSaveToPackage.java │ ├── index.ios.js │ ├── index.js │ ├── package.json │ └── windows │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── RNSaveTo.sln │ │ └── RNSaveTo │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── RNSaveTo.rd.xml │ │ ├── RNSaveTo.csproj │ │ ├── RNSaveToModule.cs │ │ ├── RNSaveToPackage.cs │ │ └── project.json │ ├── VideoCompress │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── android │ │ ├── build.gradle │ │ ├── libs │ │ │ ├── aspectjrt-1.8.13.jar │ │ │ └── isoparser-1.0.6.jar │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ └── plus │ │ │ └── igap │ │ │ └── videocompress │ │ │ ├── RNVideoCompressModule.java │ │ │ ├── RNVideoCompressPackage.java │ │ │ └── VideoCompressor │ │ │ ├── InputSurface.java │ │ │ ├── MP4Builder.java │ │ │ ├── Mp4Movie.java │ │ │ ├── OutputSurface.java │ │ │ ├── Sample.java │ │ │ ├── TextureRenderer.java │ │ │ ├── Track.java │ │ │ ├── VideoCompress.java │ │ │ └── VideoController.java │ ├── index.js │ └── package.json │ └── WebSocket │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── android │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── plus │ │ └── igap │ │ └── websocket │ │ ├── RNWebSocketModule.java │ │ └── RNWebSocketPackage.java │ ├── index.js │ ├── index.windows.js │ ├── ios │ ├── RNReconnectingWebSocket.h │ ├── RNReconnectingWebSocket.m │ ├── RNSRWebSocket.h │ ├── RNSRWebSocket.m │ ├── RNWebSocket.h │ ├── RNWebSocket.m │ ├── RNWebSocket.podspec │ ├── RNWebSocket.xcodeproj │ │ └── project.pbxproj │ ├── RNWebSocketExecutor.h │ ├── RNWebSocketExecutor.m │ ├── RNWebSocketObserver.h │ ├── RNWebSocketObserver.m │ └── RNWebSocketObserverProtocol.h │ └── package.json ├── package.json ├── rn-cli.config.js ├── script ├── i18n │ ├── index.js │ └── script.js └── proto │ ├── .gitignore │ ├── custom_target.js │ ├── index.js │ └── src │ └── .gitkeep ├── src ├── actions │ ├── api.js │ ├── app.js │ ├── entities │ │ ├── registeredUser.js │ │ ├── roomMessages.js │ │ └── rooms.js │ ├── fileManager.js │ ├── layout.js │ ├── locale.js │ ├── messenger │ │ ├── roomMessages.js │ │ └── rooms.js │ ├── methods │ │ ├── client │ │ │ ├── countRoomHistory.js │ │ │ └── getRoom.js │ │ ├── rooms │ │ │ ├── actionList.js │ │ │ ├── getAvatarList.js │ │ │ └── getMemberList.js │ │ ├── signaling │ │ │ ├── callAction.js │ │ │ └── callLog.js │ │ └── user │ │ │ ├── contacts │ │ │ ├── block.js │ │ │ └── getList.js │ │ │ ├── logout.js │ │ │ ├── privacy │ │ │ └── rule.js │ │ │ ├── profile │ │ │ ├── bio.js │ │ │ ├── email.js │ │ │ ├── gender.js │ │ │ ├── nickname.js │ │ │ └── selfRemove.js │ │ │ ├── session.js │ │ │ └── twoStep │ │ │ └── passwordDetail.js │ ├── modal.js │ ├── navigator.js │ ├── snackBar.js │ ├── soundPlayer.js │ └── updating.js ├── assets │ ├── fonts │ │ ├── IRANSans │ │ │ ├── IRANSans.ttf │ │ │ ├── IRANSans_Black.ttf │ │ │ ├── IRANSans_Bold.ttf │ │ │ ├── IRANSans_Light.ttf │ │ │ ├── IRANSans_Medium.ttf │ │ │ └── IRANSans_UltraLight.ttf │ │ ├── Roboto │ │ │ ├── LICENSE.txt │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ └── Roboto-ThinItalic.ttf │ │ └── neuropolitical │ │ │ └── neuropolitical.ttf │ └── images │ │ ├── intro │ │ ├── call │ │ │ └── index.js │ │ ├── chat │ │ │ └── index.js │ │ ├── free │ │ │ └── index.js │ │ ├── location │ │ │ └── index.js │ │ ├── logo │ │ │ └── index.js │ │ ├── security │ │ │ └── index.js │ │ └── transfer │ │ │ └── index.js │ │ ├── linerLogo │ │ ├── index.js │ │ ├── index.windows.js │ │ ├── linerLogo.png │ │ ├── linerLogo@2x.png │ │ └── linerLogo@3x.png │ │ └── verify │ │ ├── index.js │ │ ├── verify.png │ │ ├── verify@2x.png │ │ └── verify@3x.png ├── components │ ├── BaseUI │ │ ├── ActionSheet │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── AppModal │ │ │ ├── index.js │ │ │ └── index.style.js │ │ ├── Checkbox │ │ │ └── index.js │ │ ├── Confirm │ │ │ └── index.js │ │ ├── DialogModal │ │ │ ├── index.js │ │ │ └── index.style.js │ │ ├── DimensionLimiter │ │ │ └── index.js │ │ ├── FlatList │ │ │ ├── index.js │ │ │ └── index.windows.js │ │ ├── Form │ │ │ ├── fields │ │ │ │ ├── BaseField.js │ │ │ │ ├── PickerField.js │ │ │ │ └── TextInputField.js │ │ │ ├── index.js │ │ │ └── index.style.js │ │ ├── KeyboardAvoidingView │ │ │ ├── index.android.js │ │ │ ├── index.ios.js │ │ │ └── index.js │ │ ├── LoadingDots │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── Modal │ │ │ └── index.js │ │ ├── Picker │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── PlaceHolder │ │ │ └── index.js │ │ ├── PopupMenu │ │ │ ├── index.android.js │ │ │ └── index.js │ │ ├── ProgressBar │ │ │ ├── PendingProgress.js │ │ │ ├── ProgressingProgress.js │ │ │ └── index.js │ │ ├── SelectListModal │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── SnackBar │ │ │ └── index.js │ │ ├── Spinner │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── StatusBar │ │ │ ├── index.ios.js │ │ │ └── index.js │ │ ├── TextInput │ │ │ ├── index.js │ │ │ ├── index.style.js │ │ │ └── index.windows.js │ │ ├── Toolbar │ │ │ └── index.js │ │ ├── Utile │ │ │ └── index.js │ │ └── index.js │ ├── Call │ │ ├── ReturnToCall.js │ │ ├── index.js │ │ └── index.styles.js │ ├── Contact │ │ ├── Form │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── List │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ └── Picker │ │ │ ├── index.js │ │ │ └── index.styles.js │ ├── General │ │ ├── Camera │ │ │ ├── BlinkRecorder.js │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── SeekBar │ │ │ └── index.js │ │ └── VideoPlayer │ │ │ ├── index.js │ │ │ └── index.styles.js │ ├── Intro │ │ ├── index.js │ │ └── index.styles.js │ ├── LocationPicker │ │ ├── index.js │ │ └── index.styles.js │ ├── Main │ │ ├── index.js │ │ └── index.styles.js │ ├── MainBottom │ │ └── index.js │ ├── MainTabs │ │ ├── CallList │ │ │ ├── index.js │ │ │ └── index.style.js │ │ ├── Nearby │ │ │ ├── List │ │ │ │ ├── NearbyList │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.styles.js │ │ │ │ ├── index.js │ │ │ │ └── index.styles.js │ │ │ ├── Map │ │ │ │ ├── MapMarker │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.styles.js │ │ │ │ ├── index.js │ │ │ │ └── index.styles.js │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── New │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── Profile │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ └── RoomList │ │ │ ├── index.js │ │ │ └── index.styles.js │ ├── PrivacyPolicy │ │ └── index.js │ ├── QrCode │ │ └── index.js │ ├── Room │ │ ├── AvatarList │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── RoomCreate │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── RoomEdit │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── RoomGallery │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── RoomHistory │ │ │ ├── EmojiPiker.js │ │ │ ├── JoinBox.js │ │ │ ├── RoomHistoryToolbar.js │ │ │ ├── ScrollDown.js │ │ │ ├── VoiceRecorder.js │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── RoomInfo │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── RoomInviteLink │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── RoomMemberList │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── RoomReport │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ └── RoomUpdateUsername │ │ │ ├── index.js │ │ │ └── index.styles.js │ ├── RoomPicker │ │ ├── index.js │ │ └── index.styles.js │ ├── Setting │ │ ├── Block │ │ │ ├── index.js │ │ │ └── index.style.js │ │ ├── ChatBackground │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── Privacy │ │ │ ├── index.js │ │ │ └── index.style.js │ │ ├── index.js │ │ └── index.style.js │ ├── Unit │ │ ├── Avatar │ │ │ └── index.js │ │ ├── ConnectionStatus │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── PlaceHolderItem │ │ │ └── index.js │ │ ├── RoomActions │ │ │ └── index.js │ │ ├── RoomListItem │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── RoomMessage │ │ │ ├── ChannelBox │ │ │ │ ├── index.js │ │ │ │ └── index.styles.js │ │ │ ├── ChatBox │ │ │ │ ├── index.js │ │ │ │ └── index.styles.js │ │ │ ├── GroupBox │ │ │ │ └── index.js │ │ │ ├── LogBox │ │ │ │ ├── index.js │ │ │ │ └── index.styles.js │ │ │ ├── MessageBox │ │ │ │ ├── AddonTime.js │ │ │ │ ├── Audio.js │ │ │ │ ├── Contact.js │ │ │ │ ├── File.js │ │ │ │ ├── ForwardFrom.js │ │ │ │ ├── Gif.js │ │ │ │ ├── Image.js │ │ │ │ ├── Location.js │ │ │ │ ├── MessageElement.js │ │ │ │ ├── ReplyTo.js │ │ │ │ ├── Sending.js │ │ │ │ ├── ShortMessage.js │ │ │ │ ├── Text.js │ │ │ │ ├── Video.js │ │ │ │ ├── Voice.js │ │ │ │ ├── index.js │ │ │ │ └── index.styles.js │ │ │ ├── OwnerBox │ │ │ │ ├── index.js │ │ │ │ └── index.styles.js │ │ │ └── index.js │ │ ├── SendBox │ │ │ ├── index.js │ │ │ └── index.style.js │ │ ├── SoundPlayer │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ └── UserListItem │ │ │ ├── index.js │ │ │ └── index.styles.js │ └── User │ │ ├── ActiveSession │ │ ├── SubListComponent.js │ │ ├── index.js │ │ └── index.style.js │ │ ├── EditProfile │ │ ├── index.js │ │ └── index.style.js │ │ ├── NewProfile │ │ ├── index.js │ │ └── index.styles.js │ │ ├── QrCodeLogin │ │ ├── index.js │ │ └── index.styles.js │ │ ├── Register │ │ ├── index.js │ │ └── index.styles.js │ │ ├── TwoStep │ │ ├── ChangeEmail │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── ChangeHint │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── ChangeRecoveryQuestion │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── Forget │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── RecoveryByEmail │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── RecoveryByQuestion │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── SetPassword │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── Setting │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── Verification │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ └── VerifyEmail │ │ │ ├── index.js │ │ │ └── index.styles.js │ │ ├── Verify │ │ ├── index.js │ │ └── index.styles.js │ │ └── VerifyDelete │ │ └── index.js ├── configureStore.js ├── constants │ ├── apiErrors │ │ ├── en.js │ │ └── fa.js │ ├── app.js │ ├── configs.js │ ├── country │ │ ├── en.js │ │ ├── fa.js │ │ └── index.js │ ├── emojiList.js │ ├── fileManager.js │ ├── fonts │ │ ├── index.ios.js │ │ └── index.js │ ├── locale.js │ ├── methods │ │ ├── aggregate.js │ │ ├── cacheable.js │ │ ├── durable.js │ │ ├── guest.js │ │ ├── index.js │ │ ├── insecure.js │ │ ├── priority.js │ │ └── timeout.js │ ├── navigators.js │ ├── screenBreakPoints.js │ └── signaling.js ├── containers │ ├── App.js │ ├── MainBottom.js │ ├── Root.js │ └── Unit │ │ ├── Avatar.js │ │ ├── AvatarBox.js │ │ ├── AvatarPicker.js │ │ ├── ConnectionStatus.js │ │ ├── MessageAtomBox.js │ │ ├── MessageLog.js │ │ ├── MessageStatus.js │ │ ├── RoomActions.js │ │ ├── RoomListItem.js │ │ ├── RoomMessage.js │ │ ├── RoomStatus.js │ │ ├── SendBox.js │ │ ├── SoundPlayer.js │ │ ├── Title.js │ │ └── UserListItem.js ├── i18n │ ├── compiled │ │ └── .gitignore │ ├── en.js │ ├── fa.js │ └── index.js ├── middlewares │ ├── collector.js │ ├── entitiesRegisteredUser.js │ ├── entitiesRoom.js │ └── userUpdateStatus.js ├── models │ ├── CacheableMethod │ │ ├── backend.js │ │ └── index.js │ ├── MetaData │ │ ├── constant.js │ │ ├── index.js │ │ └── storage.js │ ├── entities │ │ ├── RegisteredUsers │ │ │ ├── backend.js │ │ │ └── index.js │ │ ├── RoomMessages │ │ │ ├── backend.js │ │ │ └── index.js │ │ └── Rooms │ │ │ ├── Meta │ │ │ ├── backend.js │ │ │ └── index.js │ │ │ ├── backend.js │ │ │ └── index.js │ └── messenger │ │ └── Rooms │ │ ├── backend.js │ │ └── index.js ├── modules │ ├── Api │ │ ├── Client.js │ │ ├── RequestWrapper.js │ │ ├── errors │ │ │ └── index.js │ │ ├── index.js │ │ └── middleware.js │ ├── Call │ │ ├── inCall │ │ │ └── index.js │ │ ├── index.js │ │ └── middleware.js │ ├── Cleanup │ │ ├── backend.js │ │ └── index.js │ ├── Clipboard │ │ └── index.js │ ├── Collector │ │ └── index.js │ ├── Condition │ │ └── index.js │ ├── Contacts │ │ └── index.js │ ├── Db │ │ └── index.js │ ├── DimensionCalculator │ │ ├── elements │ │ │ ├── channelBox.js │ │ │ ├── chatBox.js │ │ │ ├── groupBox.js │ │ │ ├── messageBox │ │ │ │ ├── index.js │ │ │ │ └── messageAtomBox │ │ │ │ │ ├── audio.js │ │ │ │ │ ├── contact.js │ │ │ │ │ ├── file.js │ │ │ │ │ ├── gif.js │ │ │ │ │ ├── image.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── location.js │ │ │ │ │ ├── log.js │ │ │ │ │ ├── text.js │ │ │ │ │ ├── video.js │ │ │ │ │ └── voice.js │ │ │ ├── noBox.js │ │ │ └── ownerBox.js │ │ ├── index.js │ │ └── util.js │ ├── Entities │ │ ├── RegisteredUsers │ │ │ ├── index.js │ │ │ └── middleware.js │ │ ├── RoomMessages │ │ │ ├── index.js │ │ │ └── middleware.js │ │ └── Rooms │ │ │ ├── index.js │ │ │ └── middleware.js │ ├── Error │ │ ├── ClientError.js │ │ ├── ExtendableError.js │ │ ├── ServerError.js │ │ └── index.js │ ├── FileManager │ │ ├── download.js │ │ ├── index.js │ │ ├── info.js │ │ └── upload.js │ ├── GeoLocation │ │ └── index.js │ ├── Handler │ │ ├── Base.js │ │ ├── Channel │ │ │ ├── AddAdmin.js │ │ │ ├── AddMember.js │ │ │ ├── AddMessageReaction.js │ │ │ ├── AddModerator.js │ │ │ ├── Avatar │ │ │ │ ├── Add.js │ │ │ │ ├── Delete.js │ │ │ │ └── GetList.js │ │ │ ├── CheckUsername.js │ │ │ ├── Create.js │ │ │ ├── Delete.js │ │ │ ├── DeleteMessage.js │ │ │ ├── Edit.js │ │ │ ├── EditMessage.js │ │ │ ├── GetDraft.js │ │ │ ├── GetMemberList.js │ │ │ ├── GetMessagesStats.js │ │ │ ├── KickAdmin.js │ │ │ ├── KickMember.js │ │ │ ├── KickModerator.js │ │ │ ├── Left.js │ │ │ ├── RemoveUsername.js │ │ │ ├── RevokeLink.js │ │ │ ├── SendMessage.js │ │ │ ├── UpdateDraft.js │ │ │ ├── UpdateSignature.js │ │ │ └── UpdateUsername.js │ │ ├── Chat │ │ │ ├── ClearMessage.js │ │ │ ├── ConvertToGroup.js │ │ │ ├── Delete.js │ │ │ ├── DeleteMessage.js │ │ │ ├── EditMessage.js │ │ │ ├── GetDraft.js │ │ │ ├── GetRoom.js │ │ │ ├── SendMessage.js │ │ │ ├── SetAction.js │ │ │ ├── UpdateDraft.js │ │ │ └── UpdateStatus.js │ │ ├── Client │ │ │ ├── CheckInviteLink.js │ │ │ ├── ClientMuteRoom.js │ │ │ ├── ClientPinRoom.js │ │ │ ├── ClientRoomReport.js │ │ │ ├── Condition.js │ │ │ ├── CountRoomHistory.js │ │ │ ├── GetRoom.js │ │ │ ├── GetRoomHistory.js │ │ │ ├── GetRoomList.js │ │ │ ├── GetRoomMessage.js │ │ │ ├── JoinByInviteLink.js │ │ │ ├── JoinByUsername.js │ │ │ ├── RegisterDevice.js │ │ │ ├── ResolveUsername.js │ │ │ ├── SearchRoomHistory.js │ │ │ ├── SearchUsername.js │ │ │ ├── SubscribeToRoom.js │ │ │ └── UnsubscribeFromRoom.js │ │ ├── Connection │ │ │ ├── Securing.js │ │ │ └── SymmetricKey.js │ │ ├── Error.js │ │ ├── File │ │ │ ├── Download.js │ │ │ ├── Info.js │ │ │ ├── Upload.js │ │ │ └── Upload │ │ │ │ ├── Init.js │ │ │ │ ├── Option.js │ │ │ │ └── Status.js │ │ ├── Geo │ │ │ ├── GetComment.js │ │ │ ├── GetNearbyCoordinate.js │ │ │ ├── GetNearbyDistance.js │ │ │ ├── GetRegisterStatus.js │ │ │ ├── Register.js │ │ │ ├── UpdateComment.js │ │ │ └── UpdatePosition.js │ │ ├── Group │ │ │ ├── AddAdmin.js │ │ │ ├── AddMember.js │ │ │ ├── AddModerator.js │ │ │ ├── Avatar │ │ │ │ ├── Add.js │ │ │ │ ├── Delete.js │ │ │ │ └── GetList.js │ │ │ ├── CheckUsername.js │ │ │ ├── ClearMessage.js │ │ │ ├── Create.js │ │ │ ├── Delete.js │ │ │ ├── DeleteMessage.js │ │ │ ├── Edit.js │ │ │ ├── EditMessage.js │ │ │ ├── GetDraft.js │ │ │ ├── GetMemberList.js │ │ │ ├── KickAdmin.js │ │ │ ├── KickMember.js │ │ │ ├── KickModerator.js │ │ │ ├── Left.js │ │ │ ├── RemoveUsername.js │ │ │ ├── RevokeLink.js │ │ │ ├── SendMessage.js │ │ │ ├── SetAction.js │ │ │ ├── UpdateDraft.js │ │ │ ├── UpdateStatus.js │ │ │ └── UpdateUsername.js │ │ ├── Heartbeat.js │ │ ├── Info │ │ │ ├── Country.js │ │ │ ├── Location.js │ │ │ ├── Page.js │ │ │ ├── Time.js │ │ │ └── Wallpaper.js │ │ ├── Push │ │ │ ├── LoginToken.js │ │ │ ├── RateSignaling.js │ │ │ ├── TwoStepVerification.js │ │ │ └── UserInfoExpired.js │ │ ├── QrCode │ │ │ ├── AddContact.js │ │ │ ├── AddMe.js │ │ │ ├── Join.js │ │ │ ├── NewDevice.js │ │ │ └── Resolve.js │ │ ├── Signaling │ │ │ ├── Accept.js │ │ │ ├── Candidate.js │ │ │ ├── ClearLog.js │ │ │ ├── GetConfiguration.js │ │ │ ├── GetLog.js │ │ │ ├── Leave.js │ │ │ ├── Offer.js │ │ │ ├── Rate.js │ │ │ ├── Ringing.js │ │ │ └── SessionHold.js │ │ ├── User │ │ │ ├── Avatar │ │ │ │ ├── Add.js │ │ │ │ ├── Delete.js │ │ │ │ └── GetList.js │ │ │ ├── Contacts │ │ │ │ ├── Block.js │ │ │ │ ├── Delete.js │ │ │ │ ├── Edit.js │ │ │ │ ├── GetBlockedList.js │ │ │ │ ├── GetList.js │ │ │ │ ├── Import.js │ │ │ │ └── Unblock.js │ │ │ ├── Delete.js │ │ │ ├── GetDeleteToken.js │ │ │ ├── Info.js │ │ │ ├── Login.js │ │ │ ├── Privacy │ │ │ │ ├── GetRule.js │ │ │ │ └── SetRule.js │ │ │ ├── Profile │ │ │ │ ├── CheckUsername.js │ │ │ │ ├── GetBio.js │ │ │ │ ├── GetEmail.js │ │ │ │ ├── GetGender.js │ │ │ │ ├── GetNickname.js │ │ │ │ ├── GetSelfRemove.js │ │ │ │ ├── SetBio.js │ │ │ │ ├── SetEmail.js │ │ │ │ ├── SetGender.js │ │ │ │ ├── SetNickname.js │ │ │ │ ├── SetSelfRemove.js │ │ │ │ └── UpdateUsername.js │ │ │ ├── Register.js │ │ │ ├── Session │ │ │ │ ├── GetActiveList.js │ │ │ │ ├── Logout.js │ │ │ │ └── Terminate.js │ │ │ ├── TwoStepVerification │ │ │ │ ├── ChangeHint.js │ │ │ │ ├── ChangeRecoveryEmail.js │ │ │ │ ├── ChangeRecoveryQuestion.js │ │ │ │ ├── CheckPassword.js │ │ │ │ ├── GetPasswordDetail.js │ │ │ │ ├── RecoverPasswordByAnswers.js │ │ │ │ ├── RecoverPasswordByToken.js │ │ │ │ ├── RequestRecoveryToken.js │ │ │ │ ├── ResendVerifyEmail.js │ │ │ │ ├── SetPassword.js │ │ │ │ ├── UnsetPassword.js │ │ │ │ ├── VerifyPassword.js │ │ │ │ └── VerifyRecoveryEmail.js │ │ │ ├── UpdateStatus.js │ │ │ ├── Verify.js │ │ │ └── VerifyNewDevice.js │ │ └── index.js │ ├── Linking │ │ ├── index.ios.js │ │ └── index.js │ ├── LogReport │ │ ├── index.android.js │ │ └── index.ios.js │ ├── Messenger │ │ ├── Rooms │ │ │ ├── index.js │ │ │ └── middleware.js │ │ └── loadRoomHistory.js │ ├── Migration │ │ ├── doMigration.js │ │ └── index.js │ ├── Notification │ │ └── index.js │ ├── Permission │ │ ├── index.js │ │ └── index.windows.js │ ├── PromiseLimiter │ │ └── index.js │ ├── Proto │ │ ├── bundle.js │ │ ├── index.js │ │ └── wrappers.js │ ├── QueueDb │ │ └── index.js │ ├── Responsive │ │ ├── Device.js │ │ ├── MediaQuery.js │ │ ├── MediaQuerySelector.js │ │ ├── MemoizeResponsiveStyleSheet.js │ │ ├── Responsive.js │ │ ├── ResponsiveComponent.js │ │ ├── ResponsiveStyleSheet.js │ │ └── index.js │ ├── RichTextView │ │ ├── index.js │ │ ├── index.styles.js │ │ ├── rules.js │ │ └── util.js │ ├── Share │ │ └── index.js │ ├── SmsListener │ │ ├── index.android.js │ │ └── index.js │ ├── SoundPlayer │ │ └── index.js │ ├── Squel │ │ └── index.js │ ├── ThemeProvider │ │ └── index.js │ └── VideoCompress │ │ ├── index.android.js │ │ └── index.ios.js ├── navigators │ ├── AppNavigator.js │ ├── PrimaryNavigator.js │ ├── SecondaryNavigator.js │ └── index.js ├── reducers │ ├── api.js │ ├── app.js │ ├── entities │ │ ├── index.js │ │ ├── registeredUsers.js │ │ ├── roomMessages.js │ │ └── rooms.js │ ├── fileManager │ │ ├── download.js │ │ ├── index.js │ │ └── upload.js │ ├── index.js │ ├── layout.js │ ├── messenger │ │ ├── index.js │ │ ├── roomMessages.js │ │ └── rooms.js │ ├── methods │ │ ├── client │ │ │ └── countRoomHistory.js │ │ ├── index.js │ │ ├── rooms │ │ │ ├── getActionList.js │ │ │ ├── getAvatarList.js │ │ │ └── getMemberList.js │ │ ├── signaling │ │ │ ├── callAction.js │ │ │ └── callLog.js │ │ └── user │ │ │ ├── contacts │ │ │ ├── block.js │ │ │ └── getList.js │ │ │ ├── privacy │ │ │ └── rule.js │ │ │ ├── profile │ │ │ ├── bio.js │ │ │ ├── email.js │ │ │ ├── gender.js │ │ │ ├── nickname.js │ │ │ └── selfRemove.js │ │ │ ├── session.js │ │ │ └── twoStep │ │ │ └── passwordDetail.js │ ├── modal.js │ ├── nav.js │ ├── navPrimary.js │ ├── navSecondary.js │ ├── snackBar.js │ ├── soundPlayer.js │ └── updating.js ├── schemas │ ├── registeredUser.js │ ├── room.js │ └── roomMessage.js ├── screens │ ├── CallScreen.js │ ├── Contact │ │ ├── ContactListScreen.js │ │ ├── ContactNewScreen.js │ │ └── ContactPickerScreen.js │ ├── General │ │ ├── CameraScreen.js │ │ └── VideoPlayerScreen.js │ ├── InitialScreen.js │ ├── IntroScreen │ │ ├── index.js │ │ └── index.windows.js │ ├── LocationPickerScreen.js │ ├── MainScreen.js │ ├── MainTabs │ │ ├── CallListScreen.js │ │ ├── NearbyScreen.js │ │ ├── NewScreen.js │ │ ├── ProfileScreen.js │ │ └── RoomListScreen.js │ ├── PrivacyPolicyScreen.js │ ├── QrCode │ │ └── QrCodeScreen.js │ ├── Room │ │ ├── AvatarListScreen.js │ │ ├── RoomCreateScreen.js │ │ ├── RoomEditScreen.js │ │ ├── RoomGalleryScreen.js │ │ ├── RoomHistoryScreen.js │ │ ├── RoomInfoScreen.js │ │ ├── RoomInviteLinkScreen.js │ │ ├── RoomMemberListScreen.js │ │ ├── RoomReportScreen.js │ │ └── RoomUpdateUsernameScreen.js │ ├── RoomPickerScreen.js │ ├── SecondaryInitialScreen.js │ ├── Setting │ │ ├── Block │ │ │ └── BlockScreen.js │ │ ├── ChatBackground │ │ │ └── ChatBackgroundScreen.js │ │ ├── Privacy │ │ │ └── SettingPrivacyScreen.js │ │ └── SettingScreen.js │ ├── TestScreen.js │ └── User │ │ ├── ActiveSessionScreen.js │ │ ├── TwoStep │ │ ├── UserTwoStepChangeEmailScreen.js │ │ ├── UserTwoStepChangeHintScreen.js │ │ ├── UserTwoStepChangeRecoveryQuestionScreen.js │ │ ├── UserTwoStepForgetScreen.js │ │ ├── UserTwoStepRecoveryByEmailScreen.js │ │ ├── UserTwoStepRecoveryByQuestionScreen.js │ │ ├── UserTwoStepSetPasswordScreen.js │ │ ├── UserTwoStepSettingScreen.js │ │ ├── UserTwoStepVerificationScreen.js │ │ └── UserTwoStepVerifyRecoveryEmail.js │ │ ├── UserEditProfileScreen.js │ │ ├── UserNewProfileScreen.js │ │ ├── UserQrCodeLoginScreen.js │ │ ├── UserRegisterScreen.js │ │ ├── UserVerifyDeleteScreen.js │ │ └── UserVerifyScreen.js ├── selector │ ├── app │ │ └── app.js │ ├── entities │ │ ├── registeredUser.js │ │ ├── room.js │ │ └── roomMessage.js │ ├── messenger │ │ ├── room.js │ │ └── roomMessage.js │ └── methods │ │ ├── client │ │ └── index.js │ │ ├── rooms │ │ └── index.js │ │ ├── signaling │ │ ├── callLog.js │ │ └── callPermissin.js │ │ └── user │ │ └── contacts │ │ ├── block.js │ │ └── getList.js ├── themes │ ├── amber.js │ ├── blue-dark.js │ ├── blue-grey.js │ ├── blue.js │ ├── brown.js │ ├── cyan.js │ ├── dark.js │ ├── deep-orange.js │ ├── deep-purple.js │ ├── default │ │ ├── index.js │ │ └── ui-theme.js │ ├── green.js │ ├── grey.js │ ├── index.js │ ├── indigo.js │ ├── light-blue.js │ ├── light-green.js │ ├── light.js │ ├── lime.js │ ├── orange.js │ ├── pink.js │ ├── purple.js │ ├── red.js │ ├── teal.js │ └── yellow.js └── utils │ ├── app.js │ ├── bgMessaging.js │ ├── buffer.js │ ├── core.js │ ├── filters.js │ ├── locale.js │ ├── messenger.js │ └── validator.js ├── windows ├── .gitignore ├── iGapPlus.sln └── iGapPlus │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.cs │ ├── Package.appxmanifest │ ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml │ ├── ReactAssets │ └── .gitignore │ ├── iGapPlus.csproj │ ├── iGapPlus_TemporaryKey.pfx │ └── project.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/.babelrc -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/Root.js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/__tests__/Root.js.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/IRANSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/IRANSans.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/IRANSans_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/IRANSans_Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/filepaths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/app/src/main/res/xml/filepaths.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/app.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/index.js -------------------------------------------------------------------------------- /ios/Crashlytics.framework/Crashlytics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Crashlytics.framework/Crashlytics -------------------------------------------------------------------------------- /ios/Crashlytics.framework/Headers/Answers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Crashlytics.framework/Headers/Answers.h -------------------------------------------------------------------------------- /ios/Crashlytics.framework/Headers/CLSAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Crashlytics.framework/Headers/CLSAttributes.h -------------------------------------------------------------------------------- /ios/Crashlytics.framework/Headers/CLSLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Crashlytics.framework/Headers/CLSLogging.h -------------------------------------------------------------------------------- /ios/Crashlytics.framework/Headers/CLSReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Crashlytics.framework/Headers/CLSReport.h -------------------------------------------------------------------------------- /ios/Crashlytics.framework/Headers/CLSStackFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Crashlytics.framework/Headers/CLSStackFrame.h -------------------------------------------------------------------------------- /ios/Crashlytics.framework/Headers/Crashlytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Crashlytics.framework/Headers/Crashlytics.h -------------------------------------------------------------------------------- /ios/Crashlytics.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Crashlytics.framework/Info.plist -------------------------------------------------------------------------------- /ios/Crashlytics.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Crashlytics.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/Crashlytics.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Crashlytics.framework/run -------------------------------------------------------------------------------- /ios/Crashlytics.framework/submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Crashlytics.framework/submit -------------------------------------------------------------------------------- /ios/Crashlytics.framework/uploadDSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Crashlytics.framework/uploadDSYM -------------------------------------------------------------------------------- /ios/Fabric.framework/Fabric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Fabric.framework/Fabric -------------------------------------------------------------------------------- /ios/Fabric.framework/Headers/FABAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Fabric.framework/Headers/FABAttributes.h -------------------------------------------------------------------------------- /ios/Fabric.framework/Headers/Fabric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Fabric.framework/Headers/Fabric.h -------------------------------------------------------------------------------- /ios/Fabric.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Fabric.framework/Info.plist -------------------------------------------------------------------------------- /ios/Fabric.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Fabric.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /ios/Fabric.framework/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Fabric.framework/run -------------------------------------------------------------------------------- /ios/Fabric.framework/uploadDSYM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Fabric.framework/uploadDSYM -------------------------------------------------------------------------------- /ios/Firebase/Analytics/FirebaseInstanceID.framework/Headers/FirebaseInstanceID.h: -------------------------------------------------------------------------------- 1 | #import "FIRInstanceID.h" 2 | -------------------------------------------------------------------------------- /ios/Firebase/Firebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Firebase/Firebase.h -------------------------------------------------------------------------------- /ios/Firebase/Messaging/Protobuf.framework/Protobuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Firebase/Messaging/Protobuf.framework/Protobuf -------------------------------------------------------------------------------- /ios/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/Localizable.strings -------------------------------------------------------------------------------- /ios/api-keys/fabric/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/api-keys/fabric/.gitignore -------------------------------------------------------------------------------- /ios/iGapPlus-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlus-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/iGapPlus-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlus-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/iGapPlus.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlus.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/iGapPlus/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlus/AppDelegate.h -------------------------------------------------------------------------------- /ios/iGapPlus/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlus/AppDelegate.m -------------------------------------------------------------------------------- /ios/iGapPlus/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlus/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/iGapPlus/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlus/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/iGapPlus/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlus/Info.plist -------------------------------------------------------------------------------- /ios/iGapPlus/iGapPlus-bridging-header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlus/iGapPlus-bridging-header.h -------------------------------------------------------------------------------- /ios/iGapPlus/iGapPlus.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlus/iGapPlus.entitlements -------------------------------------------------------------------------------- /ios/iGapPlus/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlus/main.m -------------------------------------------------------------------------------- /ios/iGapPlusTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlusTests/Info.plist -------------------------------------------------------------------------------- /ios/iGapPlusTests/iGapPlusTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/iGapPlusTests/iGapPlusTests.m -------------------------------------------------------------------------------- /ios/incallmanager_busytone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/incallmanager_busytone.mp3 -------------------------------------------------------------------------------- /ios/incallmanager_ringback.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/ios/incallmanager_ringback.mp3 -------------------------------------------------------------------------------- /native/modules/Camera/.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /native/modules/Camera/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/Camera/.gitignore -------------------------------------------------------------------------------- /native/modules/Camera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/Camera/README.md -------------------------------------------------------------------------------- /native/modules/Camera/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/Camera/android/build.gradle -------------------------------------------------------------------------------- /native/modules/Camera/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/Camera/index.js -------------------------------------------------------------------------------- /native/modules/Camera/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/Camera/package.json -------------------------------------------------------------------------------- /native/modules/FileSystem/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /native/modules/FileSystem/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/FileSystem/.gitignore -------------------------------------------------------------------------------- /native/modules/FileSystem/FileUtil/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/FileSystem/FileUtil/index.ios.js -------------------------------------------------------------------------------- /native/modules/FileSystem/FileUtil/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/FileSystem/FileUtil/index.js -------------------------------------------------------------------------------- /native/modules/FileSystem/FileUtil/index.windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/FileSystem/FileUtil/index.windows.js -------------------------------------------------------------------------------- /native/modules/FileSystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/FileSystem/README.md -------------------------------------------------------------------------------- /native/modules/FileSystem/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/FileSystem/android/build.gradle -------------------------------------------------------------------------------- /native/modules/FileSystem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/FileSystem/index.js -------------------------------------------------------------------------------- /native/modules/FileSystem/ios/RNIGFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/FileSystem/ios/RNIGFileSystem.h -------------------------------------------------------------------------------- /native/modules/FileSystem/ios/RNIGFileSystem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/FileSystem/ios/RNIGFileSystem.m -------------------------------------------------------------------------------- /native/modules/FileSystem/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/FileSystem/package.json -------------------------------------------------------------------------------- /native/modules/FileSystem/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/FileSystem/windows/.gitignore -------------------------------------------------------------------------------- /native/modules/SaveTo/.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /native/modules/SaveTo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/SaveTo/.gitignore -------------------------------------------------------------------------------- /native/modules/SaveTo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/SaveTo/README.md -------------------------------------------------------------------------------- /native/modules/SaveTo/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/SaveTo/android/build.gradle -------------------------------------------------------------------------------- /native/modules/SaveTo/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/SaveTo/index.ios.js -------------------------------------------------------------------------------- /native/modules/SaveTo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/SaveTo/index.js -------------------------------------------------------------------------------- /native/modules/SaveTo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/SaveTo/package.json -------------------------------------------------------------------------------- /native/modules/SaveTo/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/SaveTo/windows/.gitignore -------------------------------------------------------------------------------- /native/modules/SaveTo/windows/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/SaveTo/windows/.npmignore -------------------------------------------------------------------------------- /native/modules/SaveTo/windows/RNSaveTo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/SaveTo/windows/RNSaveTo.sln -------------------------------------------------------------------------------- /native/modules/SaveTo/windows/RNSaveTo/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/SaveTo/windows/RNSaveTo/project.json -------------------------------------------------------------------------------- /native/modules/VideoCompress/.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /native/modules/VideoCompress/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/VideoCompress/.gitignore -------------------------------------------------------------------------------- /native/modules/VideoCompress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/VideoCompress/README.md -------------------------------------------------------------------------------- /native/modules/VideoCompress/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/VideoCompress/android/build.gradle -------------------------------------------------------------------------------- /native/modules/VideoCompress/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/VideoCompress/index.js -------------------------------------------------------------------------------- /native/modules/VideoCompress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/VideoCompress/package.json -------------------------------------------------------------------------------- /native/modules/WebSocket/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /native/modules/WebSocket/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/.gitignore -------------------------------------------------------------------------------- /native/modules/WebSocket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/README.md -------------------------------------------------------------------------------- /native/modules/WebSocket/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/android/build.gradle -------------------------------------------------------------------------------- /native/modules/WebSocket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/index.js -------------------------------------------------------------------------------- /native/modules/WebSocket/index.windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/index.windows.js -------------------------------------------------------------------------------- /native/modules/WebSocket/ios/RNSRWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/ios/RNSRWebSocket.h -------------------------------------------------------------------------------- /native/modules/WebSocket/ios/RNSRWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/ios/RNSRWebSocket.m -------------------------------------------------------------------------------- /native/modules/WebSocket/ios/RNWebSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/ios/RNWebSocket.h -------------------------------------------------------------------------------- /native/modules/WebSocket/ios/RNWebSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/ios/RNWebSocket.m -------------------------------------------------------------------------------- /native/modules/WebSocket/ios/RNWebSocket.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/ios/RNWebSocket.podspec -------------------------------------------------------------------------------- /native/modules/WebSocket/ios/RNWebSocketExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/ios/RNWebSocketExecutor.h -------------------------------------------------------------------------------- /native/modules/WebSocket/ios/RNWebSocketExecutor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/ios/RNWebSocketExecutor.m -------------------------------------------------------------------------------- /native/modules/WebSocket/ios/RNWebSocketObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/ios/RNWebSocketObserver.h -------------------------------------------------------------------------------- /native/modules/WebSocket/ios/RNWebSocketObserver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/ios/RNWebSocketObserver.m -------------------------------------------------------------------------------- /native/modules/WebSocket/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/native/modules/WebSocket/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/package.json -------------------------------------------------------------------------------- /rn-cli.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/rn-cli.config.js -------------------------------------------------------------------------------- /script/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/script/i18n/index.js -------------------------------------------------------------------------------- /script/i18n/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/script/i18n/script.js -------------------------------------------------------------------------------- /script/proto/.gitignore: -------------------------------------------------------------------------------- 1 | src/*.proto -------------------------------------------------------------------------------- /script/proto/custom_target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/script/proto/custom_target.js -------------------------------------------------------------------------------- /script/proto/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/script/proto/index.js -------------------------------------------------------------------------------- /script/proto/src/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/actions/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/api.js -------------------------------------------------------------------------------- /src/actions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/app.js -------------------------------------------------------------------------------- /src/actions/entities/registeredUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/entities/registeredUser.js -------------------------------------------------------------------------------- /src/actions/entities/roomMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/entities/roomMessages.js -------------------------------------------------------------------------------- /src/actions/entities/rooms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/entities/rooms.js -------------------------------------------------------------------------------- /src/actions/fileManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/fileManager.js -------------------------------------------------------------------------------- /src/actions/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/layout.js -------------------------------------------------------------------------------- /src/actions/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/locale.js -------------------------------------------------------------------------------- /src/actions/messenger/roomMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/messenger/roomMessages.js -------------------------------------------------------------------------------- /src/actions/messenger/rooms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/messenger/rooms.js -------------------------------------------------------------------------------- /src/actions/methods/client/countRoomHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/client/countRoomHistory.js -------------------------------------------------------------------------------- /src/actions/methods/client/getRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/client/getRoom.js -------------------------------------------------------------------------------- /src/actions/methods/rooms/actionList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/rooms/actionList.js -------------------------------------------------------------------------------- /src/actions/methods/rooms/getAvatarList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/rooms/getAvatarList.js -------------------------------------------------------------------------------- /src/actions/methods/rooms/getMemberList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/rooms/getMemberList.js -------------------------------------------------------------------------------- /src/actions/methods/signaling/callAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/signaling/callAction.js -------------------------------------------------------------------------------- /src/actions/methods/signaling/callLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/signaling/callLog.js -------------------------------------------------------------------------------- /src/actions/methods/user/contacts/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/user/contacts/block.js -------------------------------------------------------------------------------- /src/actions/methods/user/contacts/getList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/user/contacts/getList.js -------------------------------------------------------------------------------- /src/actions/methods/user/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/user/logout.js -------------------------------------------------------------------------------- /src/actions/methods/user/privacy/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/user/privacy/rule.js -------------------------------------------------------------------------------- /src/actions/methods/user/profile/bio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/user/profile/bio.js -------------------------------------------------------------------------------- /src/actions/methods/user/profile/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/user/profile/email.js -------------------------------------------------------------------------------- /src/actions/methods/user/profile/gender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/user/profile/gender.js -------------------------------------------------------------------------------- /src/actions/methods/user/profile/nickname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/user/profile/nickname.js -------------------------------------------------------------------------------- /src/actions/methods/user/profile/selfRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/user/profile/selfRemove.js -------------------------------------------------------------------------------- /src/actions/methods/user/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/user/session.js -------------------------------------------------------------------------------- /src/actions/methods/user/twoStep/passwordDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/methods/user/twoStep/passwordDetail.js -------------------------------------------------------------------------------- /src/actions/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/modal.js -------------------------------------------------------------------------------- /src/actions/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/navigator.js -------------------------------------------------------------------------------- /src/actions/snackBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/snackBar.js -------------------------------------------------------------------------------- /src/actions/soundPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/soundPlayer.js -------------------------------------------------------------------------------- /src/actions/updating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/actions/updating.js -------------------------------------------------------------------------------- /src/assets/fonts/IRANSans/IRANSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/IRANSans/IRANSans.ttf -------------------------------------------------------------------------------- /src/assets/fonts/IRANSans/IRANSans_Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/IRANSans/IRANSans_Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/IRANSans/IRANSans_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/IRANSans/IRANSans_Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/IRANSans/IRANSans_Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/IRANSans/IRANSans_Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/IRANSans/IRANSans_Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/IRANSans/IRANSans_Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/IRANSans/IRANSans_UltraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/IRANSans/IRANSans_UltraLight.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/Roboto-Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/Roboto/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /src/assets/fonts/neuropolitical/neuropolitical.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/fonts/neuropolitical/neuropolitical.ttf -------------------------------------------------------------------------------- /src/assets/images/intro/call/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/intro/call/index.js -------------------------------------------------------------------------------- /src/assets/images/intro/chat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/intro/chat/index.js -------------------------------------------------------------------------------- /src/assets/images/intro/free/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/intro/free/index.js -------------------------------------------------------------------------------- /src/assets/images/intro/location/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/intro/location/index.js -------------------------------------------------------------------------------- /src/assets/images/intro/logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/intro/logo/index.js -------------------------------------------------------------------------------- /src/assets/images/intro/security/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/intro/security/index.js -------------------------------------------------------------------------------- /src/assets/images/intro/transfer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/intro/transfer/index.js -------------------------------------------------------------------------------- /src/assets/images/linerLogo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/linerLogo/index.js -------------------------------------------------------------------------------- /src/assets/images/linerLogo/index.windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/linerLogo/index.windows.js -------------------------------------------------------------------------------- /src/assets/images/linerLogo/linerLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/linerLogo/linerLogo.png -------------------------------------------------------------------------------- /src/assets/images/linerLogo/linerLogo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/linerLogo/linerLogo@2x.png -------------------------------------------------------------------------------- /src/assets/images/linerLogo/linerLogo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/linerLogo/linerLogo@3x.png -------------------------------------------------------------------------------- /src/assets/images/verify/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/verify/index.js -------------------------------------------------------------------------------- /src/assets/images/verify/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/verify/verify.png -------------------------------------------------------------------------------- /src/assets/images/verify/verify@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/verify/verify@2x.png -------------------------------------------------------------------------------- /src/assets/images/verify/verify@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/assets/images/verify/verify@3x.png -------------------------------------------------------------------------------- /src/components/BaseUI/ActionSheet/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/ActionSheet/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/ActionSheet/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/ActionSheet/index.styles.js -------------------------------------------------------------------------------- /src/components/BaseUI/AppModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/AppModal/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/AppModal/index.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/AppModal/index.style.js -------------------------------------------------------------------------------- /src/components/BaseUI/Checkbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Checkbox/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/Confirm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Confirm/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/DialogModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/DialogModal/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/DialogModal/index.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/DialogModal/index.style.js -------------------------------------------------------------------------------- /src/components/BaseUI/DimensionLimiter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/DimensionLimiter/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/FlatList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/FlatList/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/FlatList/index.windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/FlatList/index.windows.js -------------------------------------------------------------------------------- /src/components/BaseUI/Form/fields/BaseField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Form/fields/BaseField.js -------------------------------------------------------------------------------- /src/components/BaseUI/Form/fields/PickerField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Form/fields/PickerField.js -------------------------------------------------------------------------------- /src/components/BaseUI/Form/fields/TextInputField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Form/fields/TextInputField.js -------------------------------------------------------------------------------- /src/components/BaseUI/Form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Form/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/Form/index.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Form/index.style.js -------------------------------------------------------------------------------- /src/components/BaseUI/KeyboardAvoidingView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/KeyboardAvoidingView/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/LoadingDots/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/LoadingDots/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/LoadingDots/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/LoadingDots/index.styles.js -------------------------------------------------------------------------------- /src/components/BaseUI/Modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Modal/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/Picker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Picker/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/Picker/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Picker/index.styles.js -------------------------------------------------------------------------------- /src/components/BaseUI/PlaceHolder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/PlaceHolder/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/PopupMenu/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/PopupMenu/index.android.js -------------------------------------------------------------------------------- /src/components/BaseUI/PopupMenu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/PopupMenu/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/ProgressBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/ProgressBar/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/SelectListModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/SelectListModal/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/SnackBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/SnackBar/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/Spinner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Spinner/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/Spinner/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Spinner/index.styles.js -------------------------------------------------------------------------------- /src/components/BaseUI/StatusBar/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/StatusBar/index.ios.js -------------------------------------------------------------------------------- /src/components/BaseUI/StatusBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/StatusBar/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/TextInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/TextInput/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/TextInput/index.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/TextInput/index.style.js -------------------------------------------------------------------------------- /src/components/BaseUI/TextInput/index.windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/TextInput/index.windows.js -------------------------------------------------------------------------------- /src/components/BaseUI/Toolbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Toolbar/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/Utile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/Utile/index.js -------------------------------------------------------------------------------- /src/components/BaseUI/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/BaseUI/index.js -------------------------------------------------------------------------------- /src/components/Call/ReturnToCall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Call/ReturnToCall.js -------------------------------------------------------------------------------- /src/components/Call/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Call/index.js -------------------------------------------------------------------------------- /src/components/Call/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Call/index.styles.js -------------------------------------------------------------------------------- /src/components/Contact/Form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Contact/Form/index.js -------------------------------------------------------------------------------- /src/components/Contact/Form/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Contact/Form/index.styles.js -------------------------------------------------------------------------------- /src/components/Contact/List/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Contact/List/index.js -------------------------------------------------------------------------------- /src/components/Contact/List/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Contact/List/index.styles.js -------------------------------------------------------------------------------- /src/components/Contact/Picker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Contact/Picker/index.js -------------------------------------------------------------------------------- /src/components/Contact/Picker/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Contact/Picker/index.styles.js -------------------------------------------------------------------------------- /src/components/General/Camera/BlinkRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/General/Camera/BlinkRecorder.js -------------------------------------------------------------------------------- /src/components/General/Camera/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/General/Camera/index.js -------------------------------------------------------------------------------- /src/components/General/Camera/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/General/Camera/index.styles.js -------------------------------------------------------------------------------- /src/components/General/SeekBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/General/SeekBar/index.js -------------------------------------------------------------------------------- /src/components/General/VideoPlayer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/General/VideoPlayer/index.js -------------------------------------------------------------------------------- /src/components/General/VideoPlayer/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/General/VideoPlayer/index.styles.js -------------------------------------------------------------------------------- /src/components/Intro/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Intro/index.js -------------------------------------------------------------------------------- /src/components/Intro/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Intro/index.styles.js -------------------------------------------------------------------------------- /src/components/LocationPicker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/LocationPicker/index.js -------------------------------------------------------------------------------- /src/components/LocationPicker/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/LocationPicker/index.styles.js -------------------------------------------------------------------------------- /src/components/Main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Main/index.js -------------------------------------------------------------------------------- /src/components/Main/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Main/index.styles.js -------------------------------------------------------------------------------- /src/components/MainBottom/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainBottom/index.js -------------------------------------------------------------------------------- /src/components/MainTabs/CallList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/CallList/index.js -------------------------------------------------------------------------------- /src/components/MainTabs/CallList/index.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/CallList/index.style.js -------------------------------------------------------------------------------- /src/components/MainTabs/Nearby/List/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/Nearby/List/index.js -------------------------------------------------------------------------------- /src/components/MainTabs/Nearby/List/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/Nearby/List/index.styles.js -------------------------------------------------------------------------------- /src/components/MainTabs/Nearby/Map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/Nearby/Map/index.js -------------------------------------------------------------------------------- /src/components/MainTabs/Nearby/Map/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/Nearby/Map/index.styles.js -------------------------------------------------------------------------------- /src/components/MainTabs/Nearby/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/Nearby/index.js -------------------------------------------------------------------------------- /src/components/MainTabs/Nearby/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/Nearby/index.styles.js -------------------------------------------------------------------------------- /src/components/MainTabs/New/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/New/index.js -------------------------------------------------------------------------------- /src/components/MainTabs/New/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/New/index.styles.js -------------------------------------------------------------------------------- /src/components/MainTabs/Profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/Profile/index.js -------------------------------------------------------------------------------- /src/components/MainTabs/Profile/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/Profile/index.styles.js -------------------------------------------------------------------------------- /src/components/MainTabs/RoomList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/RoomList/index.js -------------------------------------------------------------------------------- /src/components/MainTabs/RoomList/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/MainTabs/RoomList/index.styles.js -------------------------------------------------------------------------------- /src/components/PrivacyPolicy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/PrivacyPolicy/index.js -------------------------------------------------------------------------------- /src/components/QrCode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/QrCode/index.js -------------------------------------------------------------------------------- /src/components/Room/AvatarList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/AvatarList/index.js -------------------------------------------------------------------------------- /src/components/Room/AvatarList/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/AvatarList/index.styles.js -------------------------------------------------------------------------------- /src/components/Room/RoomCreate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomCreate/index.js -------------------------------------------------------------------------------- /src/components/Room/RoomCreate/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomCreate/index.styles.js -------------------------------------------------------------------------------- /src/components/Room/RoomEdit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomEdit/index.js -------------------------------------------------------------------------------- /src/components/Room/RoomEdit/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomEdit/index.styles.js -------------------------------------------------------------------------------- /src/components/Room/RoomGallery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomGallery/index.js -------------------------------------------------------------------------------- /src/components/Room/RoomGallery/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomGallery/index.styles.js -------------------------------------------------------------------------------- /src/components/Room/RoomHistory/EmojiPiker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomHistory/EmojiPiker.js -------------------------------------------------------------------------------- /src/components/Room/RoomHistory/JoinBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomHistory/JoinBox.js -------------------------------------------------------------------------------- /src/components/Room/RoomHistory/ScrollDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomHistory/ScrollDown.js -------------------------------------------------------------------------------- /src/components/Room/RoomHistory/VoiceRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomHistory/VoiceRecorder.js -------------------------------------------------------------------------------- /src/components/Room/RoomHistory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomHistory/index.js -------------------------------------------------------------------------------- /src/components/Room/RoomHistory/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomHistory/index.styles.js -------------------------------------------------------------------------------- /src/components/Room/RoomInfo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomInfo/index.js -------------------------------------------------------------------------------- /src/components/Room/RoomInfo/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomInfo/index.styles.js -------------------------------------------------------------------------------- /src/components/Room/RoomInviteLink/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomInviteLink/index.js -------------------------------------------------------------------------------- /src/components/Room/RoomInviteLink/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomInviteLink/index.styles.js -------------------------------------------------------------------------------- /src/components/Room/RoomMemberList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomMemberList/index.js -------------------------------------------------------------------------------- /src/components/Room/RoomMemberList/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomMemberList/index.styles.js -------------------------------------------------------------------------------- /src/components/Room/RoomReport/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomReport/index.js -------------------------------------------------------------------------------- /src/components/Room/RoomReport/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomReport/index.styles.js -------------------------------------------------------------------------------- /src/components/Room/RoomUpdateUsername/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Room/RoomUpdateUsername/index.js -------------------------------------------------------------------------------- /src/components/RoomPicker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/RoomPicker/index.js -------------------------------------------------------------------------------- /src/components/RoomPicker/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/RoomPicker/index.styles.js -------------------------------------------------------------------------------- /src/components/Setting/Block/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Setting/Block/index.js -------------------------------------------------------------------------------- /src/components/Setting/Block/index.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Setting/Block/index.style.js -------------------------------------------------------------------------------- /src/components/Setting/ChatBackground/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Setting/ChatBackground/index.js -------------------------------------------------------------------------------- /src/components/Setting/Privacy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Setting/Privacy/index.js -------------------------------------------------------------------------------- /src/components/Setting/Privacy/index.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Setting/Privacy/index.style.js -------------------------------------------------------------------------------- /src/components/Setting/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Setting/index.js -------------------------------------------------------------------------------- /src/components/Setting/index.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Setting/index.style.js -------------------------------------------------------------------------------- /src/components/Unit/Avatar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/Avatar/index.js -------------------------------------------------------------------------------- /src/components/Unit/ConnectionStatus/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/ConnectionStatus/index.js -------------------------------------------------------------------------------- /src/components/Unit/PlaceHolderItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/PlaceHolderItem/index.js -------------------------------------------------------------------------------- /src/components/Unit/RoomActions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomActions/index.js -------------------------------------------------------------------------------- /src/components/Unit/RoomListItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomListItem/index.js -------------------------------------------------------------------------------- /src/components/Unit/RoomListItem/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomListItem/index.styles.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/ChannelBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/ChannelBox/index.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/ChatBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/ChatBox/index.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/GroupBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/GroupBox/index.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/LogBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/LogBox/index.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/MessageBox/Audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/MessageBox/Audio.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/MessageBox/File.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/MessageBox/File.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/MessageBox/Gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/MessageBox/Gif.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/MessageBox/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/MessageBox/Image.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/MessageBox/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/MessageBox/Text.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/MessageBox/Video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/MessageBox/Video.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/MessageBox/Voice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/MessageBox/Voice.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/MessageBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/MessageBox/index.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/OwnerBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/OwnerBox/index.js -------------------------------------------------------------------------------- /src/components/Unit/RoomMessage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/RoomMessage/index.js -------------------------------------------------------------------------------- /src/components/Unit/SendBox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/SendBox/index.js -------------------------------------------------------------------------------- /src/components/Unit/SendBox/index.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/SendBox/index.style.js -------------------------------------------------------------------------------- /src/components/Unit/SoundPlayer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/SoundPlayer/index.js -------------------------------------------------------------------------------- /src/components/Unit/SoundPlayer/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/SoundPlayer/index.styles.js -------------------------------------------------------------------------------- /src/components/Unit/UserListItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/UserListItem/index.js -------------------------------------------------------------------------------- /src/components/Unit/UserListItem/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/Unit/UserListItem/index.styles.js -------------------------------------------------------------------------------- /src/components/User/ActiveSession/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/ActiveSession/index.js -------------------------------------------------------------------------------- /src/components/User/ActiveSession/index.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/ActiveSession/index.style.js -------------------------------------------------------------------------------- /src/components/User/EditProfile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/EditProfile/index.js -------------------------------------------------------------------------------- /src/components/User/EditProfile/index.style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/EditProfile/index.style.js -------------------------------------------------------------------------------- /src/components/User/NewProfile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/NewProfile/index.js -------------------------------------------------------------------------------- /src/components/User/NewProfile/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/NewProfile/index.styles.js -------------------------------------------------------------------------------- /src/components/User/QrCodeLogin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/QrCodeLogin/index.js -------------------------------------------------------------------------------- /src/components/User/QrCodeLogin/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/QrCodeLogin/index.styles.js -------------------------------------------------------------------------------- /src/components/User/Register/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/Register/index.js -------------------------------------------------------------------------------- /src/components/User/Register/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/Register/index.styles.js -------------------------------------------------------------------------------- /src/components/User/TwoStep/ChangeEmail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/TwoStep/ChangeEmail/index.js -------------------------------------------------------------------------------- /src/components/User/TwoStep/ChangeHint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/TwoStep/ChangeHint/index.js -------------------------------------------------------------------------------- /src/components/User/TwoStep/Forget/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/TwoStep/Forget/index.js -------------------------------------------------------------------------------- /src/components/User/TwoStep/Forget/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/TwoStep/Forget/index.styles.js -------------------------------------------------------------------------------- /src/components/User/TwoStep/SetPassword/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/TwoStep/SetPassword/index.js -------------------------------------------------------------------------------- /src/components/User/TwoStep/Setting/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/TwoStep/Setting/index.js -------------------------------------------------------------------------------- /src/components/User/TwoStep/Setting/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/TwoStep/Setting/index.styles.js -------------------------------------------------------------------------------- /src/components/User/TwoStep/Verification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/TwoStep/Verification/index.js -------------------------------------------------------------------------------- /src/components/User/TwoStep/VerifyEmail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/TwoStep/VerifyEmail/index.js -------------------------------------------------------------------------------- /src/components/User/Verify/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/Verify/index.js -------------------------------------------------------------------------------- /src/components/User/Verify/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/Verify/index.styles.js -------------------------------------------------------------------------------- /src/components/User/VerifyDelete/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/components/User/VerifyDelete/index.js -------------------------------------------------------------------------------- /src/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/configureStore.js -------------------------------------------------------------------------------- /src/constants/apiErrors/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/apiErrors/en.js -------------------------------------------------------------------------------- /src/constants/apiErrors/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/apiErrors/fa.js -------------------------------------------------------------------------------- /src/constants/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/app.js -------------------------------------------------------------------------------- /src/constants/configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/configs.js -------------------------------------------------------------------------------- /src/constants/country/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/country/en.js -------------------------------------------------------------------------------- /src/constants/country/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/country/fa.js -------------------------------------------------------------------------------- /src/constants/country/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/country/index.js -------------------------------------------------------------------------------- /src/constants/emojiList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/emojiList.js -------------------------------------------------------------------------------- /src/constants/fileManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/fileManager.js -------------------------------------------------------------------------------- /src/constants/fonts/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/fonts/index.ios.js -------------------------------------------------------------------------------- /src/constants/fonts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/fonts/index.js -------------------------------------------------------------------------------- /src/constants/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/locale.js -------------------------------------------------------------------------------- /src/constants/methods/aggregate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/methods/aggregate.js -------------------------------------------------------------------------------- /src/constants/methods/cacheable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/methods/cacheable.js -------------------------------------------------------------------------------- /src/constants/methods/durable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/methods/durable.js -------------------------------------------------------------------------------- /src/constants/methods/guest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/methods/guest.js -------------------------------------------------------------------------------- /src/constants/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/methods/index.js -------------------------------------------------------------------------------- /src/constants/methods/insecure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/methods/insecure.js -------------------------------------------------------------------------------- /src/constants/methods/priority.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/methods/priority.js -------------------------------------------------------------------------------- /src/constants/methods/timeout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/methods/timeout.js -------------------------------------------------------------------------------- /src/constants/navigators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/navigators.js -------------------------------------------------------------------------------- /src/constants/screenBreakPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/screenBreakPoints.js -------------------------------------------------------------------------------- /src/constants/signaling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/constants/signaling.js -------------------------------------------------------------------------------- /src/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/App.js -------------------------------------------------------------------------------- /src/containers/MainBottom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/MainBottom.js -------------------------------------------------------------------------------- /src/containers/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Root.js -------------------------------------------------------------------------------- /src/containers/Unit/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/Avatar.js -------------------------------------------------------------------------------- /src/containers/Unit/AvatarBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/AvatarBox.js -------------------------------------------------------------------------------- /src/containers/Unit/AvatarPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/AvatarPicker.js -------------------------------------------------------------------------------- /src/containers/Unit/ConnectionStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/ConnectionStatus.js -------------------------------------------------------------------------------- /src/containers/Unit/MessageAtomBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/MessageAtomBox.js -------------------------------------------------------------------------------- /src/containers/Unit/MessageLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/MessageLog.js -------------------------------------------------------------------------------- /src/containers/Unit/MessageStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/MessageStatus.js -------------------------------------------------------------------------------- /src/containers/Unit/RoomActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/RoomActions.js -------------------------------------------------------------------------------- /src/containers/Unit/RoomListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/RoomListItem.js -------------------------------------------------------------------------------- /src/containers/Unit/RoomMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/RoomMessage.js -------------------------------------------------------------------------------- /src/containers/Unit/RoomStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/RoomStatus.js -------------------------------------------------------------------------------- /src/containers/Unit/SendBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/SendBox.js -------------------------------------------------------------------------------- /src/containers/Unit/SoundPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/SoundPlayer.js -------------------------------------------------------------------------------- /src/containers/Unit/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/Title.js -------------------------------------------------------------------------------- /src/containers/Unit/UserListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/containers/Unit/UserListItem.js -------------------------------------------------------------------------------- /src/i18n/compiled/.gitignore: -------------------------------------------------------------------------------- 1 | *.js -------------------------------------------------------------------------------- /src/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/i18n/en.js -------------------------------------------------------------------------------- /src/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/i18n/fa.js -------------------------------------------------------------------------------- /src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/i18n/index.js -------------------------------------------------------------------------------- /src/middlewares/collector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/middlewares/collector.js -------------------------------------------------------------------------------- /src/middlewares/entitiesRegisteredUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/middlewares/entitiesRegisteredUser.js -------------------------------------------------------------------------------- /src/middlewares/entitiesRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/middlewares/entitiesRoom.js -------------------------------------------------------------------------------- /src/middlewares/userUpdateStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/middlewares/userUpdateStatus.js -------------------------------------------------------------------------------- /src/models/CacheableMethod/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/CacheableMethod/backend.js -------------------------------------------------------------------------------- /src/models/CacheableMethod/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/CacheableMethod/index.js -------------------------------------------------------------------------------- /src/models/MetaData/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/MetaData/constant.js -------------------------------------------------------------------------------- /src/models/MetaData/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/MetaData/index.js -------------------------------------------------------------------------------- /src/models/MetaData/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/MetaData/storage.js -------------------------------------------------------------------------------- /src/models/entities/RegisteredUsers/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/entities/RegisteredUsers/backend.js -------------------------------------------------------------------------------- /src/models/entities/RegisteredUsers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/entities/RegisteredUsers/index.js -------------------------------------------------------------------------------- /src/models/entities/RoomMessages/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/entities/RoomMessages/backend.js -------------------------------------------------------------------------------- /src/models/entities/RoomMessages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/entities/RoomMessages/index.js -------------------------------------------------------------------------------- /src/models/entities/Rooms/Meta/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/entities/Rooms/Meta/backend.js -------------------------------------------------------------------------------- /src/models/entities/Rooms/Meta/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/entities/Rooms/Meta/index.js -------------------------------------------------------------------------------- /src/models/entities/Rooms/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/entities/Rooms/backend.js -------------------------------------------------------------------------------- /src/models/entities/Rooms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/entities/Rooms/index.js -------------------------------------------------------------------------------- /src/models/messenger/Rooms/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/messenger/Rooms/backend.js -------------------------------------------------------------------------------- /src/models/messenger/Rooms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/models/messenger/Rooms/index.js -------------------------------------------------------------------------------- /src/modules/Api/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Api/Client.js -------------------------------------------------------------------------------- /src/modules/Api/RequestWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Api/RequestWrapper.js -------------------------------------------------------------------------------- /src/modules/Api/errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Api/errors/index.js -------------------------------------------------------------------------------- /src/modules/Api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Api/index.js -------------------------------------------------------------------------------- /src/modules/Api/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Api/middleware.js -------------------------------------------------------------------------------- /src/modules/Call/inCall/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Call/inCall/index.js -------------------------------------------------------------------------------- /src/modules/Call/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Call/index.js -------------------------------------------------------------------------------- /src/modules/Call/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Call/middleware.js -------------------------------------------------------------------------------- /src/modules/Cleanup/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Cleanup/backend.js -------------------------------------------------------------------------------- /src/modules/Cleanup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Cleanup/index.js -------------------------------------------------------------------------------- /src/modules/Clipboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Clipboard/index.js -------------------------------------------------------------------------------- /src/modules/Collector/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Collector/index.js -------------------------------------------------------------------------------- /src/modules/Condition/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Condition/index.js -------------------------------------------------------------------------------- /src/modules/Contacts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Contacts/index.js -------------------------------------------------------------------------------- /src/modules/Db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Db/index.js -------------------------------------------------------------------------------- /src/modules/DimensionCalculator/elements/chatBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/DimensionCalculator/elements/chatBox.js -------------------------------------------------------------------------------- /src/modules/DimensionCalculator/elements/noBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/DimensionCalculator/elements/noBox.js -------------------------------------------------------------------------------- /src/modules/DimensionCalculator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/DimensionCalculator/index.js -------------------------------------------------------------------------------- /src/modules/DimensionCalculator/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/DimensionCalculator/util.js -------------------------------------------------------------------------------- /src/modules/Entities/RegisteredUsers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Entities/RegisteredUsers/index.js -------------------------------------------------------------------------------- /src/modules/Entities/RegisteredUsers/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Entities/RegisteredUsers/middleware.js -------------------------------------------------------------------------------- /src/modules/Entities/RoomMessages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Entities/RoomMessages/index.js -------------------------------------------------------------------------------- /src/modules/Entities/RoomMessages/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Entities/RoomMessages/middleware.js -------------------------------------------------------------------------------- /src/modules/Entities/Rooms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Entities/Rooms/index.js -------------------------------------------------------------------------------- /src/modules/Entities/Rooms/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Entities/Rooms/middleware.js -------------------------------------------------------------------------------- /src/modules/Error/ClientError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Error/ClientError.js -------------------------------------------------------------------------------- /src/modules/Error/ExtendableError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Error/ExtendableError.js -------------------------------------------------------------------------------- /src/modules/Error/ServerError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Error/ServerError.js -------------------------------------------------------------------------------- /src/modules/Error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Error/index.js -------------------------------------------------------------------------------- /src/modules/FileManager/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/FileManager/download.js -------------------------------------------------------------------------------- /src/modules/FileManager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/FileManager/index.js -------------------------------------------------------------------------------- /src/modules/FileManager/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/FileManager/info.js -------------------------------------------------------------------------------- /src/modules/FileManager/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/FileManager/upload.js -------------------------------------------------------------------------------- /src/modules/GeoLocation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/GeoLocation/index.js -------------------------------------------------------------------------------- /src/modules/Handler/Base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Base.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/AddAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/AddAdmin.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/AddMember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/AddMember.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/AddMessageReaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/AddMessageReaction.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/AddModerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/AddModerator.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/Avatar/Add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/Avatar/Add.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/Avatar/Delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/Avatar/Delete.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/Avatar/GetList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/Avatar/GetList.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/CheckUsername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/CheckUsername.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/Create.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/Delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/Delete.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/DeleteMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/DeleteMessage.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/Edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/Edit.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/EditMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/EditMessage.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/GetDraft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/GetDraft.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/GetMemberList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/GetMemberList.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/GetMessagesStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/GetMessagesStats.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/KickAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/KickAdmin.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/KickMember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/KickMember.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/KickModerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/KickModerator.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/Left.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/Left.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/RemoveUsername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/RemoveUsername.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/RevokeLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/RevokeLink.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/SendMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/SendMessage.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/UpdateDraft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/UpdateDraft.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/UpdateSignature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/UpdateSignature.js -------------------------------------------------------------------------------- /src/modules/Handler/Channel/UpdateUsername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Channel/UpdateUsername.js -------------------------------------------------------------------------------- /src/modules/Handler/Chat/ClearMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Chat/ClearMessage.js -------------------------------------------------------------------------------- /src/modules/Handler/Chat/ConvertToGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Chat/ConvertToGroup.js -------------------------------------------------------------------------------- /src/modules/Handler/Chat/Delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Chat/Delete.js -------------------------------------------------------------------------------- /src/modules/Handler/Chat/DeleteMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Chat/DeleteMessage.js -------------------------------------------------------------------------------- /src/modules/Handler/Chat/EditMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Chat/EditMessage.js -------------------------------------------------------------------------------- /src/modules/Handler/Chat/GetDraft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Chat/GetDraft.js -------------------------------------------------------------------------------- /src/modules/Handler/Chat/GetRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Chat/GetRoom.js -------------------------------------------------------------------------------- /src/modules/Handler/Chat/SendMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Chat/SendMessage.js -------------------------------------------------------------------------------- /src/modules/Handler/Chat/SetAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Chat/SetAction.js -------------------------------------------------------------------------------- /src/modules/Handler/Chat/UpdateDraft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Chat/UpdateDraft.js -------------------------------------------------------------------------------- /src/modules/Handler/Chat/UpdateStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Chat/UpdateStatus.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/CheckInviteLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/CheckInviteLink.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/ClientMuteRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/ClientMuteRoom.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/ClientPinRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/ClientPinRoom.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/ClientRoomReport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/ClientRoomReport.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/Condition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/Condition.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/CountRoomHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/CountRoomHistory.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/GetRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/GetRoom.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/GetRoomHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/GetRoomHistory.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/GetRoomList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/GetRoomList.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/GetRoomMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/GetRoomMessage.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/JoinByInviteLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/JoinByInviteLink.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/JoinByUsername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/JoinByUsername.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/RegisterDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/RegisterDevice.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/ResolveUsername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/ResolveUsername.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/SearchRoomHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/SearchRoomHistory.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/SearchUsername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/SearchUsername.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/SubscribeToRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/SubscribeToRoom.js -------------------------------------------------------------------------------- /src/modules/Handler/Client/UnsubscribeFromRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Client/UnsubscribeFromRoom.js -------------------------------------------------------------------------------- /src/modules/Handler/Connection/Securing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Connection/Securing.js -------------------------------------------------------------------------------- /src/modules/Handler/Connection/SymmetricKey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Connection/SymmetricKey.js -------------------------------------------------------------------------------- /src/modules/Handler/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Error.js -------------------------------------------------------------------------------- /src/modules/Handler/File/Download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/File/Download.js -------------------------------------------------------------------------------- /src/modules/Handler/File/Info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/File/Info.js -------------------------------------------------------------------------------- /src/modules/Handler/File/Upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/File/Upload.js -------------------------------------------------------------------------------- /src/modules/Handler/File/Upload/Init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/File/Upload/Init.js -------------------------------------------------------------------------------- /src/modules/Handler/File/Upload/Option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/File/Upload/Option.js -------------------------------------------------------------------------------- /src/modules/Handler/File/Upload/Status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/File/Upload/Status.js -------------------------------------------------------------------------------- /src/modules/Handler/Geo/GetComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Geo/GetComment.js -------------------------------------------------------------------------------- /src/modules/Handler/Geo/GetNearbyCoordinate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Geo/GetNearbyCoordinate.js -------------------------------------------------------------------------------- /src/modules/Handler/Geo/GetNearbyDistance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Geo/GetNearbyDistance.js -------------------------------------------------------------------------------- /src/modules/Handler/Geo/GetRegisterStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Geo/GetRegisterStatus.js -------------------------------------------------------------------------------- /src/modules/Handler/Geo/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Geo/Register.js -------------------------------------------------------------------------------- /src/modules/Handler/Geo/UpdateComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Geo/UpdateComment.js -------------------------------------------------------------------------------- /src/modules/Handler/Geo/UpdatePosition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Geo/UpdatePosition.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/AddAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/AddAdmin.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/AddMember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/AddMember.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/AddModerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/AddModerator.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/Avatar/Add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/Avatar/Add.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/Avatar/Delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/Avatar/Delete.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/Avatar/GetList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/Avatar/GetList.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/CheckUsername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/CheckUsername.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/ClearMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/ClearMessage.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/Create.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/Delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/Delete.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/DeleteMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/DeleteMessage.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/Edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/Edit.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/EditMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/EditMessage.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/GetDraft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/GetDraft.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/GetMemberList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/GetMemberList.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/KickAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/KickAdmin.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/KickMember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/KickMember.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/KickModerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/KickModerator.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/Left.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/Left.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/RemoveUsername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/RemoveUsername.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/RevokeLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/RevokeLink.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/SendMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/SendMessage.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/SetAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/SetAction.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/UpdateDraft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/UpdateDraft.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/UpdateStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/UpdateStatus.js -------------------------------------------------------------------------------- /src/modules/Handler/Group/UpdateUsername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Group/UpdateUsername.js -------------------------------------------------------------------------------- /src/modules/Handler/Heartbeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Heartbeat.js -------------------------------------------------------------------------------- /src/modules/Handler/Info/Country.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Info/Country.js -------------------------------------------------------------------------------- /src/modules/Handler/Info/Location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Info/Location.js -------------------------------------------------------------------------------- /src/modules/Handler/Info/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Info/Page.js -------------------------------------------------------------------------------- /src/modules/Handler/Info/Time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Info/Time.js -------------------------------------------------------------------------------- /src/modules/Handler/Info/Wallpaper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Info/Wallpaper.js -------------------------------------------------------------------------------- /src/modules/Handler/Push/LoginToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Push/LoginToken.js -------------------------------------------------------------------------------- /src/modules/Handler/Push/RateSignaling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Push/RateSignaling.js -------------------------------------------------------------------------------- /src/modules/Handler/Push/TwoStepVerification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Push/TwoStepVerification.js -------------------------------------------------------------------------------- /src/modules/Handler/Push/UserInfoExpired.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Push/UserInfoExpired.js -------------------------------------------------------------------------------- /src/modules/Handler/QrCode/AddContact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/QrCode/AddContact.js -------------------------------------------------------------------------------- /src/modules/Handler/QrCode/AddMe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/QrCode/AddMe.js -------------------------------------------------------------------------------- /src/modules/Handler/QrCode/Join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/QrCode/Join.js -------------------------------------------------------------------------------- /src/modules/Handler/QrCode/NewDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/QrCode/NewDevice.js -------------------------------------------------------------------------------- /src/modules/Handler/QrCode/Resolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/QrCode/Resolve.js -------------------------------------------------------------------------------- /src/modules/Handler/Signaling/Accept.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Signaling/Accept.js -------------------------------------------------------------------------------- /src/modules/Handler/Signaling/Candidate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Signaling/Candidate.js -------------------------------------------------------------------------------- /src/modules/Handler/Signaling/ClearLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Signaling/ClearLog.js -------------------------------------------------------------------------------- /src/modules/Handler/Signaling/GetConfiguration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Signaling/GetConfiguration.js -------------------------------------------------------------------------------- /src/modules/Handler/Signaling/GetLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Signaling/GetLog.js -------------------------------------------------------------------------------- /src/modules/Handler/Signaling/Leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Signaling/Leave.js -------------------------------------------------------------------------------- /src/modules/Handler/Signaling/Offer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Signaling/Offer.js -------------------------------------------------------------------------------- /src/modules/Handler/Signaling/Rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Signaling/Rate.js -------------------------------------------------------------------------------- /src/modules/Handler/Signaling/Ringing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Signaling/Ringing.js -------------------------------------------------------------------------------- /src/modules/Handler/Signaling/SessionHold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/Signaling/SessionHold.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Avatar/Add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Avatar/Add.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Avatar/Delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Avatar/Delete.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Avatar/GetList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Avatar/GetList.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Contacts/Block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Contacts/Block.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Contacts/Delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Contacts/Delete.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Contacts/Edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Contacts/Edit.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Contacts/GetBlockedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Contacts/GetBlockedList.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Contacts/GetList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Contacts/GetList.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Contacts/Import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Contacts/Import.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Contacts/Unblock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Contacts/Unblock.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Delete.js -------------------------------------------------------------------------------- /src/modules/Handler/User/GetDeleteToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/GetDeleteToken.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Info.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Login.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Privacy/GetRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Privacy/GetRule.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Privacy/SetRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Privacy/SetRule.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Profile/CheckUsername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Profile/CheckUsername.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Profile/GetBio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Profile/GetBio.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Profile/GetEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Profile/GetEmail.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Profile/GetGender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Profile/GetGender.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Profile/GetNickname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Profile/GetNickname.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Profile/GetSelfRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Profile/GetSelfRemove.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Profile/SetBio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Profile/SetBio.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Profile/SetEmail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Profile/SetEmail.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Profile/SetGender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Profile/SetGender.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Profile/SetNickname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Profile/SetNickname.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Profile/SetSelfRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Profile/SetSelfRemove.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Profile/UpdateUsername.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Profile/UpdateUsername.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Register.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Session/GetActiveList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Session/GetActiveList.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Session/Logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Session/Logout.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Session/Terminate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Session/Terminate.js -------------------------------------------------------------------------------- /src/modules/Handler/User/UpdateStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/UpdateStatus.js -------------------------------------------------------------------------------- /src/modules/Handler/User/Verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/Verify.js -------------------------------------------------------------------------------- /src/modules/Handler/User/VerifyNewDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/User/VerifyNewDevice.js -------------------------------------------------------------------------------- /src/modules/Handler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Handler/index.js -------------------------------------------------------------------------------- /src/modules/Linking/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Linking/index.ios.js -------------------------------------------------------------------------------- /src/modules/Linking/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Linking/index.js -------------------------------------------------------------------------------- /src/modules/LogReport/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/LogReport/index.android.js -------------------------------------------------------------------------------- /src/modules/LogReport/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/LogReport/index.ios.js -------------------------------------------------------------------------------- /src/modules/Messenger/Rooms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Messenger/Rooms/index.js -------------------------------------------------------------------------------- /src/modules/Messenger/Rooms/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Messenger/Rooms/middleware.js -------------------------------------------------------------------------------- /src/modules/Messenger/loadRoomHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Messenger/loadRoomHistory.js -------------------------------------------------------------------------------- /src/modules/Migration/doMigration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Migration/doMigration.js -------------------------------------------------------------------------------- /src/modules/Migration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Migration/index.js -------------------------------------------------------------------------------- /src/modules/Notification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Notification/index.js -------------------------------------------------------------------------------- /src/modules/Permission/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Permission/index.js -------------------------------------------------------------------------------- /src/modules/Permission/index.windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Permission/index.windows.js -------------------------------------------------------------------------------- /src/modules/PromiseLimiter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/PromiseLimiter/index.js -------------------------------------------------------------------------------- /src/modules/Proto/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Proto/bundle.js -------------------------------------------------------------------------------- /src/modules/Proto/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Proto/index.js -------------------------------------------------------------------------------- /src/modules/Proto/wrappers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Proto/wrappers.js -------------------------------------------------------------------------------- /src/modules/QueueDb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/QueueDb/index.js -------------------------------------------------------------------------------- /src/modules/Responsive/Device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Responsive/Device.js -------------------------------------------------------------------------------- /src/modules/Responsive/MediaQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Responsive/MediaQuery.js -------------------------------------------------------------------------------- /src/modules/Responsive/MediaQuerySelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Responsive/MediaQuerySelector.js -------------------------------------------------------------------------------- /src/modules/Responsive/Responsive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Responsive/Responsive.js -------------------------------------------------------------------------------- /src/modules/Responsive/ResponsiveComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Responsive/ResponsiveComponent.js -------------------------------------------------------------------------------- /src/modules/Responsive/ResponsiveStyleSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Responsive/ResponsiveStyleSheet.js -------------------------------------------------------------------------------- /src/modules/Responsive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Responsive/index.js -------------------------------------------------------------------------------- /src/modules/RichTextView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/RichTextView/index.js -------------------------------------------------------------------------------- /src/modules/RichTextView/index.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/RichTextView/index.styles.js -------------------------------------------------------------------------------- /src/modules/RichTextView/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/RichTextView/rules.js -------------------------------------------------------------------------------- /src/modules/RichTextView/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/RichTextView/util.js -------------------------------------------------------------------------------- /src/modules/Share/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Share/index.js -------------------------------------------------------------------------------- /src/modules/SmsListener/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/SmsListener/index.android.js -------------------------------------------------------------------------------- /src/modules/SmsListener/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/SmsListener/index.js -------------------------------------------------------------------------------- /src/modules/SoundPlayer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/SoundPlayer/index.js -------------------------------------------------------------------------------- /src/modules/Squel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/Squel/index.js -------------------------------------------------------------------------------- /src/modules/ThemeProvider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/ThemeProvider/index.js -------------------------------------------------------------------------------- /src/modules/VideoCompress/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/VideoCompress/index.android.js -------------------------------------------------------------------------------- /src/modules/VideoCompress/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/modules/VideoCompress/index.ios.js -------------------------------------------------------------------------------- /src/navigators/AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/navigators/AppNavigator.js -------------------------------------------------------------------------------- /src/navigators/PrimaryNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/navigators/PrimaryNavigator.js -------------------------------------------------------------------------------- /src/navigators/SecondaryNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/navigators/SecondaryNavigator.js -------------------------------------------------------------------------------- /src/navigators/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/navigators/index.js -------------------------------------------------------------------------------- /src/reducers/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/api.js -------------------------------------------------------------------------------- /src/reducers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/app.js -------------------------------------------------------------------------------- /src/reducers/entities/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/entities/index.js -------------------------------------------------------------------------------- /src/reducers/entities/registeredUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/entities/registeredUsers.js -------------------------------------------------------------------------------- /src/reducers/entities/roomMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/entities/roomMessages.js -------------------------------------------------------------------------------- /src/reducers/entities/rooms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/entities/rooms.js -------------------------------------------------------------------------------- /src/reducers/fileManager/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/fileManager/download.js -------------------------------------------------------------------------------- /src/reducers/fileManager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/fileManager/index.js -------------------------------------------------------------------------------- /src/reducers/fileManager/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/fileManager/upload.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/layout.js -------------------------------------------------------------------------------- /src/reducers/messenger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/messenger/index.js -------------------------------------------------------------------------------- /src/reducers/messenger/roomMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/messenger/roomMessages.js -------------------------------------------------------------------------------- /src/reducers/messenger/rooms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/messenger/rooms.js -------------------------------------------------------------------------------- /src/reducers/methods/client/countRoomHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/client/countRoomHistory.js -------------------------------------------------------------------------------- /src/reducers/methods/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/index.js -------------------------------------------------------------------------------- /src/reducers/methods/rooms/getActionList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/rooms/getActionList.js -------------------------------------------------------------------------------- /src/reducers/methods/rooms/getAvatarList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/rooms/getAvatarList.js -------------------------------------------------------------------------------- /src/reducers/methods/rooms/getMemberList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/rooms/getMemberList.js -------------------------------------------------------------------------------- /src/reducers/methods/signaling/callAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/signaling/callAction.js -------------------------------------------------------------------------------- /src/reducers/methods/signaling/callLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/signaling/callLog.js -------------------------------------------------------------------------------- /src/reducers/methods/user/contacts/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/user/contacts/block.js -------------------------------------------------------------------------------- /src/reducers/methods/user/contacts/getList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/user/contacts/getList.js -------------------------------------------------------------------------------- /src/reducers/methods/user/privacy/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/user/privacy/rule.js -------------------------------------------------------------------------------- /src/reducers/methods/user/profile/bio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/user/profile/bio.js -------------------------------------------------------------------------------- /src/reducers/methods/user/profile/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/user/profile/email.js -------------------------------------------------------------------------------- /src/reducers/methods/user/profile/gender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/user/profile/gender.js -------------------------------------------------------------------------------- /src/reducers/methods/user/profile/nickname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/user/profile/nickname.js -------------------------------------------------------------------------------- /src/reducers/methods/user/profile/selfRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/user/profile/selfRemove.js -------------------------------------------------------------------------------- /src/reducers/methods/user/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/user/session.js -------------------------------------------------------------------------------- /src/reducers/methods/user/twoStep/passwordDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/methods/user/twoStep/passwordDetail.js -------------------------------------------------------------------------------- /src/reducers/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/modal.js -------------------------------------------------------------------------------- /src/reducers/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/nav.js -------------------------------------------------------------------------------- /src/reducers/navPrimary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/navPrimary.js -------------------------------------------------------------------------------- /src/reducers/navSecondary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/navSecondary.js -------------------------------------------------------------------------------- /src/reducers/snackBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/snackBar.js -------------------------------------------------------------------------------- /src/reducers/soundPlayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/soundPlayer.js -------------------------------------------------------------------------------- /src/reducers/updating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/reducers/updating.js -------------------------------------------------------------------------------- /src/schemas/registeredUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/schemas/registeredUser.js -------------------------------------------------------------------------------- /src/schemas/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/schemas/room.js -------------------------------------------------------------------------------- /src/schemas/roomMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/schemas/roomMessage.js -------------------------------------------------------------------------------- /src/screens/CallScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/CallScreen.js -------------------------------------------------------------------------------- /src/screens/Contact/ContactListScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Contact/ContactListScreen.js -------------------------------------------------------------------------------- /src/screens/Contact/ContactNewScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Contact/ContactNewScreen.js -------------------------------------------------------------------------------- /src/screens/Contact/ContactPickerScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Contact/ContactPickerScreen.js -------------------------------------------------------------------------------- /src/screens/General/CameraScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/General/CameraScreen.js -------------------------------------------------------------------------------- /src/screens/General/VideoPlayerScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/General/VideoPlayerScreen.js -------------------------------------------------------------------------------- /src/screens/InitialScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/InitialScreen.js -------------------------------------------------------------------------------- /src/screens/IntroScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/IntroScreen/index.js -------------------------------------------------------------------------------- /src/screens/IntroScreen/index.windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/IntroScreen/index.windows.js -------------------------------------------------------------------------------- /src/screens/LocationPickerScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/LocationPickerScreen.js -------------------------------------------------------------------------------- /src/screens/MainScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/MainScreen.js -------------------------------------------------------------------------------- /src/screens/MainTabs/CallListScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/MainTabs/CallListScreen.js -------------------------------------------------------------------------------- /src/screens/MainTabs/NearbyScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/MainTabs/NearbyScreen.js -------------------------------------------------------------------------------- /src/screens/MainTabs/NewScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/MainTabs/NewScreen.js -------------------------------------------------------------------------------- /src/screens/MainTabs/ProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/MainTabs/ProfileScreen.js -------------------------------------------------------------------------------- /src/screens/MainTabs/RoomListScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/MainTabs/RoomListScreen.js -------------------------------------------------------------------------------- /src/screens/PrivacyPolicyScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/PrivacyPolicyScreen.js -------------------------------------------------------------------------------- /src/screens/QrCode/QrCodeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/QrCode/QrCodeScreen.js -------------------------------------------------------------------------------- /src/screens/Room/AvatarListScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Room/AvatarListScreen.js -------------------------------------------------------------------------------- /src/screens/Room/RoomCreateScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Room/RoomCreateScreen.js -------------------------------------------------------------------------------- /src/screens/Room/RoomEditScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Room/RoomEditScreen.js -------------------------------------------------------------------------------- /src/screens/Room/RoomGalleryScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Room/RoomGalleryScreen.js -------------------------------------------------------------------------------- /src/screens/Room/RoomHistoryScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Room/RoomHistoryScreen.js -------------------------------------------------------------------------------- /src/screens/Room/RoomInfoScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Room/RoomInfoScreen.js -------------------------------------------------------------------------------- /src/screens/Room/RoomInviteLinkScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Room/RoomInviteLinkScreen.js -------------------------------------------------------------------------------- /src/screens/Room/RoomMemberListScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Room/RoomMemberListScreen.js -------------------------------------------------------------------------------- /src/screens/Room/RoomReportScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Room/RoomReportScreen.js -------------------------------------------------------------------------------- /src/screens/Room/RoomUpdateUsernameScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Room/RoomUpdateUsernameScreen.js -------------------------------------------------------------------------------- /src/screens/RoomPickerScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/RoomPickerScreen.js -------------------------------------------------------------------------------- /src/screens/SecondaryInitialScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/SecondaryInitialScreen.js -------------------------------------------------------------------------------- /src/screens/Setting/Block/BlockScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Setting/Block/BlockScreen.js -------------------------------------------------------------------------------- /src/screens/Setting/Privacy/SettingPrivacyScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Setting/Privacy/SettingPrivacyScreen.js -------------------------------------------------------------------------------- /src/screens/Setting/SettingScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/Setting/SettingScreen.js -------------------------------------------------------------------------------- /src/screens/TestScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/TestScreen.js -------------------------------------------------------------------------------- /src/screens/User/ActiveSessionScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/User/ActiveSessionScreen.js -------------------------------------------------------------------------------- /src/screens/User/TwoStep/UserTwoStepForgetScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/User/TwoStep/UserTwoStepForgetScreen.js -------------------------------------------------------------------------------- /src/screens/User/UserEditProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/User/UserEditProfileScreen.js -------------------------------------------------------------------------------- /src/screens/User/UserNewProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/User/UserNewProfileScreen.js -------------------------------------------------------------------------------- /src/screens/User/UserQrCodeLoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/User/UserQrCodeLoginScreen.js -------------------------------------------------------------------------------- /src/screens/User/UserRegisterScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/User/UserRegisterScreen.js -------------------------------------------------------------------------------- /src/screens/User/UserVerifyDeleteScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/User/UserVerifyDeleteScreen.js -------------------------------------------------------------------------------- /src/screens/User/UserVerifyScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/screens/User/UserVerifyScreen.js -------------------------------------------------------------------------------- /src/selector/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/selector/app/app.js -------------------------------------------------------------------------------- /src/selector/entities/registeredUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/selector/entities/registeredUser.js -------------------------------------------------------------------------------- /src/selector/entities/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/selector/entities/room.js -------------------------------------------------------------------------------- /src/selector/entities/roomMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/selector/entities/roomMessage.js -------------------------------------------------------------------------------- /src/selector/messenger/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/selector/messenger/room.js -------------------------------------------------------------------------------- /src/selector/messenger/roomMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/selector/messenger/roomMessage.js -------------------------------------------------------------------------------- /src/selector/methods/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/selector/methods/client/index.js -------------------------------------------------------------------------------- /src/selector/methods/rooms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/selector/methods/rooms/index.js -------------------------------------------------------------------------------- /src/selector/methods/signaling/callLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/selector/methods/signaling/callLog.js -------------------------------------------------------------------------------- /src/selector/methods/signaling/callPermissin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/selector/methods/signaling/callPermissin.js -------------------------------------------------------------------------------- /src/selector/methods/user/contacts/block.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/selector/methods/user/contacts/block.js -------------------------------------------------------------------------------- /src/selector/methods/user/contacts/getList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/selector/methods/user/contacts/getList.js -------------------------------------------------------------------------------- /src/themes/amber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/amber.js -------------------------------------------------------------------------------- /src/themes/blue-dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/blue-dark.js -------------------------------------------------------------------------------- /src/themes/blue-grey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/blue-grey.js -------------------------------------------------------------------------------- /src/themes/blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/blue.js -------------------------------------------------------------------------------- /src/themes/brown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/brown.js -------------------------------------------------------------------------------- /src/themes/cyan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/cyan.js -------------------------------------------------------------------------------- /src/themes/dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/dark.js -------------------------------------------------------------------------------- /src/themes/deep-orange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/deep-orange.js -------------------------------------------------------------------------------- /src/themes/deep-purple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/deep-purple.js -------------------------------------------------------------------------------- /src/themes/default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/default/index.js -------------------------------------------------------------------------------- /src/themes/default/ui-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/default/ui-theme.js -------------------------------------------------------------------------------- /src/themes/green.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/green.js -------------------------------------------------------------------------------- /src/themes/grey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/grey.js -------------------------------------------------------------------------------- /src/themes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/index.js -------------------------------------------------------------------------------- /src/themes/indigo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/indigo.js -------------------------------------------------------------------------------- /src/themes/light-blue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/light-blue.js -------------------------------------------------------------------------------- /src/themes/light-green.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/light-green.js -------------------------------------------------------------------------------- /src/themes/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/light.js -------------------------------------------------------------------------------- /src/themes/lime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/lime.js -------------------------------------------------------------------------------- /src/themes/orange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/orange.js -------------------------------------------------------------------------------- /src/themes/pink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/pink.js -------------------------------------------------------------------------------- /src/themes/purple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/purple.js -------------------------------------------------------------------------------- /src/themes/red.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/red.js -------------------------------------------------------------------------------- /src/themes/teal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/teal.js -------------------------------------------------------------------------------- /src/themes/yellow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/themes/yellow.js -------------------------------------------------------------------------------- /src/utils/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/utils/app.js -------------------------------------------------------------------------------- /src/utils/bgMessaging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/utils/bgMessaging.js -------------------------------------------------------------------------------- /src/utils/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/utils/buffer.js -------------------------------------------------------------------------------- /src/utils/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/utils/core.js -------------------------------------------------------------------------------- /src/utils/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/utils/filters.js -------------------------------------------------------------------------------- /src/utils/locale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/utils/locale.js -------------------------------------------------------------------------------- /src/utils/messenger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/utils/messenger.js -------------------------------------------------------------------------------- /src/utils/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/src/utils/validator.js -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/iGapPlus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/iGapPlus.sln -------------------------------------------------------------------------------- /windows/iGapPlus/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/iGapPlus/App.xaml -------------------------------------------------------------------------------- /windows/iGapPlus/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/iGapPlus/App.xaml.cs -------------------------------------------------------------------------------- /windows/iGapPlus/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/iGapPlus/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /windows/iGapPlus/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/iGapPlus/Assets/StoreLogo.png -------------------------------------------------------------------------------- /windows/iGapPlus/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/iGapPlus/MainPage.cs -------------------------------------------------------------------------------- /windows/iGapPlus/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/iGapPlus/Package.appxmanifest -------------------------------------------------------------------------------- /windows/iGapPlus/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/iGapPlus/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /windows/iGapPlus/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/iGapPlus/Properties/Default.rd.xml -------------------------------------------------------------------------------- /windows/iGapPlus/ReactAssets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /windows/iGapPlus/iGapPlus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/iGapPlus/iGapPlus.csproj -------------------------------------------------------------------------------- /windows/iGapPlus/iGapPlus_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/iGapPlus/iGapPlus_TemporaryKey.pfx -------------------------------------------------------------------------------- /windows/iGapPlus/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/windows/iGapPlus/project.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RooyeKhat-Media/iGap-Plus/HEAD/yarn.lock --------------------------------------------------------------------------------