mirror of
https://github.com/vran-dev/databasir.git
synced 2025-09-21 11:19:21 +08:00
support gitlab oauth2 login (#28)
* feat: support gitlab oauth login * feat: change appType to enum
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package com.databasir.dao.converter;
|
||||
|
||||
import com.databasir.dao.enums.OAuthAppType;
|
||||
import org.jooq.impl.EnumConverter;
|
||||
|
||||
public class OAuthAppTypeConverter extends EnumConverter<String, OAuthAppType> {
|
||||
|
||||
public OAuthAppTypeConverter() {
|
||||
super(String.class, OAuthAppType.class);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user