Example #1
0
        public async Task DeclineInvite(int tripId)
        {
            var response = await TripController.DeclineInviteToTrip(tripId);

            if (response.IsSuccessStatusCode)
            {
                GetProfile(_currentuser);
            }
        }