@Override
    public void removeAssociationFromUserFollowedAssociations(Association association, AuthenticatedUser user) {
        userCollection.document(user.getSciper()).update("followed_associations", FieldValue.arrayRemove(association.getId()));
        userCollection.document(user.getSciper()).update("followed_channels", FieldValue.arrayRemove(association.getChannelId()));
    }