1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/GitService/IGitService.cs
Uncled1023 b2abba1825 Multiple Items:
- Added auto adding external source to git on reg.
- Fixed caching of account pages.
- Removed invite code in registration if it isn't required.
- Fixed robots.txt not loading.
2019-02-02 22:55:47 -08:00

24 lines
575 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Teknik.GitService
{
public interface IGitService
{
bool AccountExists(string username);
DateTime LastActive(string username);
void CreateAccount(string username, string email, string password, string authId);
void EditPassword(string username, string email, string password);
void EnableAccount(string username, string email);
void DisableAccount(string username, string email);
void DeleteAccount(string username);
}
}