Skip to content

Commit

Permalink
Version 1.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
sansan88 committed Aug 13, 2024
1 parent 28b54f3 commit 8b4dd5b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId "app.myclub.defaultapp"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 80
versionName "1.7.8"
versionCode 81
versionName "1.7.9"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
8 changes: 4 additions & 4 deletions ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = App/AppDebug.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 80;
CURRENT_PROJECT_VERSION = 81;
DEVELOPMENT_TEAM = U7DQUX87VS;
INFOPLIST_FILE = App/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = myclub;
Expand All @@ -399,7 +399,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.7.8;
MARKETING_VERSION = 1.7.9;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = app.myclub.default;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -416,7 +416,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = App/AppRelease.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 80;
CURRENT_PROJECT_VERSION = 81;
DEVELOPMENT_TEAM = U7DQUX87VS;
INFOPLIST_FILE = App/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = myclub;
Expand All @@ -426,7 +426,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.7.8;
MARKETING_VERSION = 1.7.9;
PRODUCT_BUNDLE_IDENTIFIER = app.myclub.default;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "myclub",
"version": "1.7.8",
"version": "1.7.9",
"author": "liitu consulting gmbh",
"homepage": "https://my-club.app/",
"scripts": {
Expand Down
5 changes: 3 additions & 2 deletions src/app/pages/member/member.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ export class MemberPage implements OnInit {
{
text: this.translate.instant("common.add"),
handler: (data) => {
//console.log(data)
this.addTeams(data);
this.toastActionSaved();
}
Expand All @@ -253,8 +254,8 @@ export class MemberPage implements OnInit {
async addTeams(teams) {
for (const team of teams) {
// Add user to team
console.log("add user " + this.userProfile.id + " to team: " + team.id);
await this.fbService.approveUserTeamRequest(team.id, this.userProfile.id);
console.log("add user " + this.userProfile.id + " to team: " + team);
await this.fbService.approveUserTeamRequest(team, this.userProfile.id);
}
console.log("Teams added");
}
Expand Down

0 comments on commit 8b4dd5b

Please sign in to comment.