Skip to content

Commit 9d84d28

Browse files
committed
chore: update badges
1 parent 3f296d4 commit 9d84d28

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Node CI
1+
name: Test
22

33
on: [push]
44

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[![MIT license](https://img.shields.io/badge/License-MIT-blue.svg)](https://lbesson.mit-license.org/)
2+
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) [![Actions Status](https://github.com/codebytere/node-mac-permissions/workflows/Test/badge.svg)](https://github.com/codebytere/node-mac-permissions/actions)
3+
14
# node-mac-permissions
25

36
```js

permissions.mm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
/***** EXPORTED FUNCTIONS *****/
109109

110110
// Returns the user's access consent status as a string
111-
Napi::Value GetAuthStatus(const Napi::CallbackInfo &info) {
111+
Napi::Value GetAuthStatus(const Napi::CallbackInfo& info) {
112112
Napi::Env env = info.Env();
113113
std::string auth_status;
114114

@@ -131,7 +131,7 @@
131131
}
132132

133133
// Request access to the Contacts store.
134-
void AskForContactsAccess(const Napi::CallbackInfo &info) {
134+
void AskForContactsAccess(const Napi::CallbackInfo& info) {
135135
Napi::Env env = info.Env();
136136
Napi::ThreadSafeFunction ts_fn = Napi::ThreadSafeFunction::New(env,
137137
info[0].As<Napi::Function>(),
@@ -156,7 +156,7 @@ void AskForContactsAccess(const Napi::CallbackInfo &info) {
156156
}
157157

158158
// Request access to Calendar.
159-
void AskForCalendarAccess(const Napi::CallbackInfo &info) {
159+
void AskForCalendarAccess(const Napi::CallbackInfo& info) {
160160
Napi::Env env = info.Env();
161161
Napi::ThreadSafeFunction ts_fn = Napi::ThreadSafeFunction::New(env,
162162
info[0].As<Napi::Function>(),
@@ -175,7 +175,7 @@ void AskForCalendarAccess(const Napi::CallbackInfo &info) {
175175
}
176176

177177
// Request access to Reminders.
178-
void AskForRemindersAccess(const Napi::CallbackInfo &info) {
178+
void AskForRemindersAccess(const Napi::CallbackInfo& info) {
179179
Napi::Env env = info.Env();
180180
Napi::ThreadSafeFunction ts_fn = Napi::ThreadSafeFunction::New(env,
181181
info[0].As<Napi::Function>(),

0 commit comments

Comments
 (0)