Skip to content

Commit

Permalink
CLDR-16499 CLA wip - basic work
Browse files Browse the repository at this point in the history
  • Loading branch information
srl295 committed Apr 23, 2024
1 parent 8a7eb5e commit 6eea96a
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions tools/cldr-apps/js/src/views/SignCla.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,19 @@ const radioStyle = {
};
async function sign() {
const client = await cldrClient.getClient();
const result = await client.apis.user.signCla({},
{
requestBody: {
email: userEmail,
name: userName,
employer: userEmployer,
corporate: userSign == 1,
signed: null,
}
});
const client = await cldrClient.getClient();
const result = await client.apis.user.signCla(
{},
{
requestBody: {
email: userEmail,
name: userName,
employer: userEmployer,
corporate: userSign == 1,
signed: null,
},
}
);
// assume OK! :)
needCla = false;
}
Expand Down

0 comments on commit 6eea96a

Please sign in to comment.