You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
374 B
18 lines
374 B
/**
|
|
* A set of functions called "actions" for `username`
|
|
*/
|
|
|
|
export default {
|
|
findOne: async (ctx, next) => {
|
|
try {
|
|
const data = await strapi
|
|
.service("api::username.username")
|
|
.findUsername(ctx.params.username);
|
|
|
|
ctx.body = data;
|
|
} catch (err) {
|
|
ctx.badRequest("Post report controller error", {moreDetails: err});
|
|
}
|
|
}
|
|
};
|