UNPKG
@meese-os/website
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.7
1.0.6
1.0.5
1.0.3
1.0.2
1.0.1
1.0.0
meeseOS, implemented in OS.js
github.com/meeseOS/meeseOS
meeseOS/meeseOS
@meese-os/website
/
src
/
client
/
auth
/
adapter.js
12 lines
(10 loc)
•
226 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
module
.
exports
=
(
_core, _config
) =>
({
login
(
values
) {
// You can transform the form values from login here if you want
return
values; },
logout
(
) {
// And perform special operations on logout
return
true
; } });