Skip to content

Commit

Permalink
Merge pull request #191 from auth0/dev
Browse files Browse the repository at this point in the history
2.1.9
  • Loading branch information
glena committed Apr 7, 2016
2 parents 94f87a8 + 1215fba commit 1311481
Show file tree
Hide file tree
Showing 8 changed files with 241 additions and 184 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,14 @@ wt create --name wp-auth0-slack \
--output url slack-notifier.js
```

## Ping webtask creation

```
wt create --name wp-auth0-ping \
--profile wptest-default \
ping.js
```

## Technical Notes

**IMPORTANT**: By using this plugin you are delegating the site authentication to Auth0. That means that you won't be using the **WordPress** database to authenticate users anymore and the default WP login box won't show anymore. However, we can still associate your existing users by merging them by email. This section explains how.
Expand Down
8 changes: 4 additions & 4 deletions WP_Auth0.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
/**
* Plugin Name: Auth0 for WordPress
* Description: Let your users login with any social provider from Twitter to Facebook as well as many others like Github. Enterprise? We've got you covered - <a href="https://auth0.com">Auth0</a> is a full enterprise solution and will work with your Active Directory or any other environment to take control of your wordpress sites.
* Version: 2.1.8
* Plugin Name: Login by Auth0
* Description: Login by Auth0 let's your users login with any social provider from Twitter to Facebook as well as many others like Github. Enterprise? We've got you covered - <a href="https://auth0.com">Auth0</a> is a full enterprise solution and will work with your Active Directory or any other environment to take control of your wordpress sites.
* Version: 2.1.9
* Author: Auth0
* Author URI: https://auth0.com
*/
Expand All @@ -12,7 +12,7 @@
define( 'WPA0_PLUGIN_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) );
define( 'WPA0_LANG', 'wp-auth0' );
define( 'AUTH0_DB_VERSION', 4 );
define( 'WPA0_VERSION', '2.1.8' );
define( 'WPA0_VERSION', '2.1.9' );

/**
* Main plugin class
Expand Down
2 changes: 1 addition & 1 deletion assets/css/initial-setup.css

Large diffs are not rendered by default.

17 changes: 13 additions & 4 deletions assets/css/initial-setup/main.styl
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,7 @@
background: #fff;
color: rgba(0,0,0,0.86);
border-color: #d0d2d3;
text-decoration:none;

&:hover {
background: #d0d2d3;
Expand Down Expand Up @@ -336,7 +337,7 @@
&.a0-warning {
background: #fff7c9;
color: #786600;
a {
a.link {
color: #786600;
font-decoration:underline;
}
Expand Down Expand Up @@ -380,14 +381,18 @@
}

.a0-profiles {
margin-top: 50px;
margin-top: 30px;
margin-bottom: 30px;

@media (min-width: 768px) {
.col {
padding-left: 10px;
.col:nth-of-type(1) {
padding-left: 0;
padding-right: 10px;
}
.col:nth-of-type(2) {
padding-left: 10px;
padding-right: 0;
}
}

.profile {
Expand Down Expand Up @@ -855,6 +860,10 @@
label {
margin-right: 10px;
}

.connections {
margin-top:30px;
}
}

.a0-table {
Expand Down
Loading

0 comments on commit 1311481

Please sign in to comment.