adding privacy policy, adding more data to user dump

This commit is contained in:
Andy Pack 2022-11-13 21:01:34 +00:00
parent 46da258efc
commit bf8be55f76
Signed by: sarsoo
GPG Key ID: A55BA3536A5E0ED7
2 changed files with 13 additions and 1 deletions

View File

@ -8,13 +8,17 @@ namespace Selector.Model
{
public class ApplicationUser : IdentityUser
{
[PersonalData]
public bool SpotifyIsLinked { get; set; }
[PersonalData]
public DateTime SpotifyLastRefresh { get; set; }
public int SpotifyTokenExpiry { get; set; }
public string SpotifyAccessToken { get; set; }
public string SpotifyRefreshToken { get; set; }
[PersonalData]
public string LastFmUsername { get; set; }
[PersonalData]
public bool SaveScrobbles { get; set; }
public List<Watcher> Watchers { get; set; }

View File

@ -5,4 +5,12 @@
}
<h1>@ViewData["Title"]</h1>
<p>Use this page to detail your site's privacy policy.</p>
<p>Selector is a side project that I don't/won't/can't monetise. No extra personal information is stored and all information can be deleted whenever you like. Your credentials are a username, email and password only, I dont want your name/phone number. No analytics/ad libraries are used.</p>
<p>Selector relies on a link to your Spotify account in order to see what you're listening to and respond. When you link your Spotify account, Selector is provided with a key that it can use to make requests of Spotify. You can unlink Spotify from the Selector settings, doing so clears all stored Spotify credentials, completely removing Selector's ability to access your Spotify account. If and when you would like to prevent Selector's access to your Spotify account, you can also revoke Selector's access from your <a href="https://www.spotify.com/uk/account/apps/">Spotify account settings</a>.</p>
<p>Selector also has Last.fm integrations, enabled by providing your username in the Selector settings page. Selector only uses publicly available Last.fm data, no authentication with Last.fm is required and removing the username from Selectors settings disables the integration.</p>
<p>You can manage your personal data <a href="/Identity/Account/Manage/PersonalData">here</a>. From this page you can download or delete your data.</p>
<p>If you have any questions or concerns about your data, you can contact me using the form on <a href="https://sarsoo.xyz/about">sarsoo.xyz</a>.</p>