Skip to content

Commit

Permalink
0.50.0
Browse files Browse the repository at this point in the history
This closes #24, closes #23 and closes #33
  • Loading branch information
coni2k committed Mar 12, 2016
1 parent 12c6a82 commit a077075
Show file tree
Hide file tree
Showing 56 changed files with 1,562 additions and 1,713 deletions.
11 changes: 11 additions & 0 deletions BusinessObjects/Models/User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,21 @@ public User(string email)
Validations.ArgumentNullOrDefault(email, "email");
// TODO Email address validation?

// Email & userName are same at the moment
Email = email;
UserName = email;
}

public bool IsAnonymous { get; set; }

/// <summary>
/// Determines whether user has a password or not.
/// Since in most cases the user will have a password, keep only false value, 'null' will be treated as true.
/// </summary>
public bool? HasPassword { get; set; }

public string SingleUseToken { get; set; }

[StringLength(50)]
[Display(Name = "First Name")]
public string FirstName { get; set; }
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
### Changelog

**0.50.0**

* Anonymous account
https://github.com/forCrowd/WealthEconomy/issues/24
* Reset password & external login callback links fix
https://github.com/forCrowd/WealthEconomy/issues/23
* TempToken was renamed to SingleUseToken
* SimpleUseToken and HasPassword were moved from Claims to User table

**0.49.1**

* .gitignore _system folder fix
Expand Down
20 changes: 10 additions & 10 deletions DataObjects/DataObjects.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@
<Compile Include="Generated\UserRoleRepository.cs">
<DependentUpon>Repository.tt</DependentUpon>
</Compile>
<Compile Include="Migrations\201511271208357_Initial.cs" />
<Compile Include="Migrations\201511271208357_Initial.Designer.cs">
<DependentUpon>201511271208357_Initial.cs</DependentUpon>
<Compile Include="Migrations\201603101443474_Initial.cs" />
<Compile Include="Migrations\201603101443474_Initial.Designer.cs">
<DependentUpon>201603101443474_Initial.cs</DependentUpon>
</Compile>
<Compile Include="Migrations\201511271208522_Initial_Manual.cs" />
<Compile Include="Migrations\201511271208522_Initial_Manual.Designer.cs">
<DependentUpon>201511271208522_Initial_Manual.cs</DependentUpon>
<Compile Include="Migrations\201603101443594_Initial_Manual.cs" />
<Compile Include="Migrations\201603101443594_Initial_Manual.Designer.cs">
<DependentUpon>201603101443594_Initial_Manual.cs</DependentUpon>
</Compile>
<Compile Include="ResourcePoolRepository.cs" />
<Compile Include="RoleStore.cs" />
Expand Down Expand Up @@ -162,11 +162,11 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Migrations\201511271208357_Initial.resx">
<DependentUpon>201511271208357_Initial.cs</DependentUpon>
<EmbeddedResource Include="Migrations\201603101443474_Initial.resx">
<DependentUpon>201603101443474_Initial.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Migrations\201511271208522_Initial_Manual.resx">
<DependentUpon>201511271208522_Initial_Manual.cs</DependentUpon>
<EmbeddedResource Include="Migrations\201603101443594_Initial_Manual.resx">
<DependentUpon>201603101443594_Initial_Manual.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
126 changes: 0 additions & 126 deletions DataObjects/Migrations/201511271208357_Initial.resx

This file was deleted.

Loading

0 comments on commit a077075

Please sign in to comment.