Questions tagged [accounts]

205 questions
0
votes
1 answer

Phone field on Accounts form

I've a very basic question to clarify the difference of depiction of Phone field at the form of accounts and in the view/advanced find/data import matched fields. Actually, the label of the field is set to Phone but its display name is Main Phone.
0
votes
2 answers

Meteor accounts invite new users

I have my site configured to login with email/password (no user name). I have login, forgot password, and password reset pages working as expected, largely based off of this guide and a lot of poking around. I'm at a bit of a loss looking for a more…
Randy Hall
  • 7,716
  • 16
  • 73
  • 151
0
votes
3 answers

Accounts.createUser doesn't save profile

I have the following piece of code in my server/fixtures.js file: var userId = Accounts.createUser({ username: "tester", email: "a@b.com", password: "foobar", profile: { name: "Max" } }); var user = Meteor.users.findOne({_id:…
the-bass
  • 705
  • 1
  • 6
  • 20
0
votes
1 answer

How do you administer 2 different Azure accounts, 2 different Email addresses, is there a way to merge them?

I now have 2 Azure accounts and I need to move everything from one to the other. Is there a method to do this? The first account will end in 2 days.
user3344395
  • 11
  • 1
  • 3
0
votes
1 answer

Meteor's standard log in form with ipad + chrome

Using the standard login form that is provided by accounts + accounts-ui, I am not able to log in through my Ipad 4 device using Chrome (Safari works). It seems to me that the callback is not done at all. Anyone encountered a similar problem? Works…
Amtrix
  • 338
  • 2
  • 10
0
votes
1 answer

How to make vim and netrw re-read windows user accounts (or manage accented user names)

I changed an user account in Windows Vista, but when I reopen Vim and netrw (with :e .) I still 'see' the old user name. How can I somehow make vim re-read the windows users info? On a side note: i changed the user because netrw fails to work…
jose
  • 399
  • 2
  • 14
0
votes
1 answer

How to validate data in onCreateUser without losing the form data?

I'm writing an Appliction using Meteor. In this App I want to implement a server-side validation of the user data using Accounts.onCreateUser. There is some data passed which can only be verified on the server side. At client side I…
MarcS82
  • 2,065
  • 7
  • 29
  • 46
0
votes
1 answer

Does google Contact api support 2-legged OAuth 2.0?

I want to impersonate Gmail accounts Contacts but could not find the way how to use 2-legged OAuth 2.0 to do that. I am using C# Google client liberary.
Raja Shahid
  • 153
  • 2
  • 8
0
votes
1 answer

Can't change Accounts.Config after startup of Meteor App

In admin part of my Meteor app, I want to call Account.CreateUser(..) for a 'PowerUser' with USERNAME_AND_OPTIONAL_EMAIL (or EMAIL_ONLY) and then sendVerificationEmail, this works great... Accounts.config(sendVerificationEmail: true); but next I…
gbdMeteor
  • 123
  • 1
  • 8
0
votes
1 answer

Setup application to use Microsoft accounts with hybridauth

I want to set my app's redirect URL to "http://www.mydomain.com/hybridauth/endpoint?hauth.done=Live", in Microsoft account Developer Center it tells me that "You must enter a valid domain that begins with http:// or https:// - query strings are not…
0
votes
1 answer

How to setup multi branch company in OpenERP 7.0

I am trying to set up a service company with multiple branches [3] in OpenERP 7.0. The nature of business is same at all the branches, though a branch has only some departments. I was advised to use multi company module, but I am not convinced about…
0
votes
1 answer

How can I accurately push individual users and accounts to a hash and then make sure separate account balances are not added together as one?

Working on a bank program. I need to make sure that users (person objects) have their own bank accounts that they can create with different balances in each account that they can interact with. They should be able to deposit, withdraw, transfer…
Randy D
  • 13
  • 5
0
votes
1 answer

Carrying data with router.go() in Iron Router

I'm struggling to pass data from one template to another, and thinking about it I wonder if that's my problem anyway. I'm using the built in accounts system, I have adding new users and authentication working, and when a user signs in I forward them…
Tortex
  • 163
  • 1
  • 1
  • 12
0
votes
1 answer

Objective-C Using Facebook Accounts and Core Data

I am currently developing an iPhone application that requires that I use Facebook accounts. I also need to use core data to store user-relevant data on the iPhone. The problem is that I know that core data is iPhone specific. Meaning if I use a…
user2977578
  • 413
  • 5
  • 19
0
votes
1 answer

Meteor Accounts - Users Logged Out on Refresh

I am using the 'accounts-base' and 'accounts-password' packages and the Accounts.createUser method to create users from a login form (i.e. I am not using the accounts-ui package). the documentation explains that the user thus created includes a…
Alex Webster
  • 707
  • 1
  • 6
  • 21