Skip to content
This repository has been archived by the owner on Dec 12, 2018. It is now read-only.

Commit

Permalink
fix invalid data store reference
Browse files Browse the repository at this point in the history
  • Loading branch information
typerandom committed Dec 22, 2015
1 parent a95947a commit a8caac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/resource/Tenant.js
Expand Up @@ -83,7 +83,7 @@ Tenant.prototype.createDirectory = function createTenantDirectory(/* dir, [optio
};

Tenant.prototype.verifyAccountEmail = function verifyAccountEmail(token, callback) {
var dataStore = this;
var dataStore = this.dataStore;
var href = "/accounts/emailVerificationTokens/" + token;

return dataStore.createResource(href, null, null, function(err,result){
Expand Down

0 comments on commit a8caac2

Please sign in to comment.